diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-05-29 13:36:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-29 13:36:55 +0200 |
commit | 532f4c41dae98e9cdfe50af6b67806982cd5111f (patch) | |
tree | a572d69a2ba73ee0ddd65a9bf60ece5e84d97bac /core/src | |
parent | 251a4d30978383fdac355cfd5623a58b74b68768 (diff) | |
parent | b9e7fd2418a1d96fa6faca0621377bc05270afee (diff) | |
download | nextcloud-server-532f4c41dae98e9cdfe50af6b67806982cd5111f.tar.gz nextcloud-server-532f4c41dae98e9cdfe50af6b67806982cd5111f.zip |
Merge pull request #20970 from nextcloud/td/js/escape-html-global
Remove the escape-html global
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/globals.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/src/globals.js b/core/src/globals.js index b10068ba33f..275ea782d01 100644 --- a/core/src/globals.js +++ b/core/src/globals.js @@ -53,7 +53,6 @@ import 'strengthify/strengthify.css' import OC from './OC/index' import OCP from './OCP/index' import OCA from './OCA/index' -import escapeHTML from 'escape-html' import { getToken as getRequestToken } from './OC/requesttoken' const warnIfNotTesting = function() { @@ -126,7 +125,6 @@ setDeprecatedProp('oc_webroot', () => OC.webroot, 'use OC.getRootPath() instead, setDeprecatedProp('OCDialogs', () => OC.dialogs, 'use OC.dialogs instead, this will be removed in Nextcloud 20') window['OCP'] = OCP window['OCA'] = OCA -window['escapeHTML'] = deprecate(escapeHTML, 'escapeHTML', 19) $.fn.select2 = deprecate($.fn.select2, 'select2', 19) /** |