Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-05-14 12:38:03 +0300
committernpmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>2020-05-29 11:34:10 +0300
commitb9e7fd2418a1d96fa6faca0621377bc05270afee (patch)
treef2999ab3e93f06b576f84c7dd5a6b0495e54cb17 /core/src
parentefd025cbc34db9468822954052c7452c5a4e48ba (diff)
Remove the escape-html global
Already announced for 19 that it would go. So now it realy does go. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'core/src')
-rw-r--r--core/src/globals.js2
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)
/**