forked from Techsystech/web
commit
c02f33b703
|
@ -10,9 +10,9 @@ Drop target support
|
||||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||||
:target: https://odoo-community.org/page/development-status
|
:target: https://odoo-community.org/page/development-status
|
||||||
:alt: Beta
|
:alt: Beta
|
||||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
||||||
:alt: License: AGPL-3
|
:alt: License: LGPL-3
|
||||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
|
||||||
:target: https://github.com/OCA/web/tree/14.0/web_drop_target
|
:target: https://github.com/OCA/web/tree/14.0/web_drop_target
|
||||||
:alt: OCA/web
|
:alt: OCA/web
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
# Copyright 2018 Therp BV <https://therp.nl>
|
# Copyright 2018 Therp BV <https://therp.nl>
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# Copyright 2018 Therp BV <https://therp.nl>
|
# Copyright 2018 Therp BV <https://therp.nl>
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
||||||
{
|
{
|
||||||
"name": "Drop target support",
|
"name": "Drop target support",
|
||||||
"version": "14.0.1.0.1",
|
"version": "14.0.1.0.1",
|
||||||
"author": "Therp BV,Odoo Community Association (OCA)",
|
"author": "Therp BV,Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/web",
|
"website": "https://github.com/OCA/web",
|
||||||
"license": "AGPL-3",
|
"license": "LGPL-3",
|
||||||
"category": "Usability",
|
"category": "Usability",
|
||||||
"summary": "Allows to drag files into Odoo",
|
"summary": "Allows to drag files into Odoo",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* global Uint8Array, base64js */
|
/* global Uint8Array, base64js */
|
||||||
// Copyright 2018 Therp BV <https://therp.nl>
|
// Copyright 2018 Therp BV <https://therp.nl>
|
||||||
// Copyright 2021 Tecnativa - Alexandre D. Díaz
|
// Copyright 2021 Tecnativa - Alexandre D. Díaz
|
||||||
// License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
// License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
||||||
|
|
||||||
odoo.define("web_drop_target", function (require) {
|
odoo.define("web_drop_target", function (require) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
Loading…
Reference in New Issue