diff options
author | Joas Schilling <coding@schilljs.com> | 2021-04-15 08:53:17 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-04-15 08:53:17 +0200 |
commit | cbca27867afb06643299039603779288e55c90f7 (patch) | |
tree | 50717c6d4a1a6c8195b4e3879b84b9ee9292d9ca /core | |
parent | 4be2e1601e80a09aebac57eabb0aaf60e744362e (diff) | |
download | nextcloud-server-cbca27867afb06643299039603779288e55c90f7.tar.gz nextcloud-server-cbca27867afb06643299039603779288e55c90f7.zip |
Don't mentioned we will do something with an already released version
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-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') |