diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-05-14 11:38:03 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2020-05-29 08:34:10 +0000 |
commit | b9e7fd2418a1d96fa6faca0621377bc05270afee (patch) | |
tree | f2999ab3e93f06b576f84c7dd5a6b0495e54cb17 /apps/comments/src | |
parent | efd025cbc34db9468822954052c7452c5a4e48ba (diff) | |
download | nextcloud-server-b9e7fd2418a1d96fa6faca0621377bc05270afee.tar.gz nextcloud-server-b9e7fd2418a1d96fa6faca0621377bc05270afee.zip |
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.js | 4 |
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) { |