diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-04-16 10:15:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-16 10:15:36 +0200 |
commit | bddb3dfcac16639b9c4ef2b25d9564647693a72b (patch) | |
tree | 5b5c8296bc41d8d61310a5df1fa0bc80b67a54e1 /core/src | |
parent | 3d1015c87a482a3ad0b19c7c4327eeb173407d24 (diff) | |
parent | 48a78aabea6aaa9d3705a145ed56ae6ef10fcccf (diff) | |
download | nextcloud-server-bddb3dfcac16639b9c4ef2b25d9564647693a72b.tar.gz nextcloud-server-bddb3dfcac16639b9c4ef2b25d9564647693a72b.zip |
Merge pull request #26567 from nextcloud/techdebt/noid/adjust-jquery-deprecation-message
Don't mentioned we will do something with an already released version
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/globals.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/globals.js b/core/src/globals.js index a52631232cc..7c5ccd77e25 100644 --- a/core/src/globals.js +++ b/core/src/globals.js @@ -102,7 +102,7 @@ const setDeprecatedProp = (global, cb, msg) => { } window._ = _ -setDeprecatedProp(['$', 'jQuery'], () => $, 'The global jQuery is deprecated. It will be updated to v3.x in Nextcloud 21. In later versions of Nextcloud it might be removed completely. Please ship your own.') +setDeprecatedProp(['$', 'jQuery'], () => $, 'The global jQuery is deprecated. It will be removed in a later versions without another warning. Please ship your own.') setDeprecatedProp('autosize', () => autosize, 'please ship your own, this will be removed in Nextcloud 20') setDeprecatedProp('Backbone', () => Backbone, 'please ship your own, this will be removed in Nextcloud 20') setDeprecatedProp(['Clipboard', 'ClipboardJS'], () => ClipboardJS, 'please ship your own, this will be removed in Nextcloud 20') |