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
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 /apps/comments/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 'apps/comments/src')
-rw-r--r--apps/comments/src/commentstabview.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/comments/src/commentstabview.js b/apps/comments/src/commentstabview.js
index 89fc65dc7c5..b7c0c297285 100644
--- a/apps/comments/src/commentstabview.js
+++ b/apps/comments/src/commentstabview.js
@@ -9,7 +9,9 @@
*
*/
-/* global Handlebars, escapeHTML */
+/* global Handlebars */
+
+import escapeHTML from 'escape-html'
(function(OC, OCA) {