diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-14 15:47:07 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2021-10-14 13:58:45 +0000 |
commit | 4322aaba227117af65d288baf602348a2c96cc96 (patch) | |
tree | 1885fa608c5755bda8b8cc5876b62f6efb962aa4 /core/src/globals.js | |
parent | acbe4b46c39703f0d3c1e205d4609c7a2607b4b1 (diff) | |
download | nextcloud-server-4322aaba227117af65d288baf602348a2c96cc96.tar.gz nextcloud-server-4322aaba227117af65d288baf602348a2c96cc96.zip |
Switch to the "new" jcrop
The old one didn't work with recent versions of node. The patched one
does. This also replaces the github dep with a real npm registry one.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core/src/globals.js')
-rw-r--r-- | core/src/globals.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/globals.js b/core/src/globals.js index 44dcae66e70..32a14fa12f4 100644 --- a/core/src/globals.js +++ b/core/src/globals.js @@ -42,8 +42,8 @@ import './Polyfill/tooltip' import ClipboardJS from 'clipboard' import { dav } from 'davclient.js' import Handlebars from 'handlebars' -import 'jcrop/js/jquery.Jcrop' -import 'jcrop/css/jquery.Jcrop.css' +import '@nextcloud/jcrop/js/jquery.Jcrop' +import '@nextcloud/jcrop/css/jquery.Jcrop.css' import md5 from 'blueimp-md5' import moment from 'moment' import 'select2' |