diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-12-20 17:59:55 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-01-09 15:02:00 +0100 |
commit | 5bf06a19a882d979b33d10529b3924d00e571c9c (patch) | |
tree | 7100bba6bc7309a8ce61c9fb0e3016f601460cb0 /core/src/globals.js | |
parent | 6da13f82ff87f0bfe3b3741d35bff54a400acf2c (diff) | |
download | nextcloud-server-5bf06a19a882d979b33d10529b3924d00e571c9c.tar.gz nextcloud-server-5bf06a19a882d979b33d10529b3924d00e571c9c.zip |
Move vendored css ponyfill to npm
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src/globals.js')
-rw-r--r-- | core/src/globals.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/globals.js b/core/src/globals.js index 2d8daa5b643..8affec0a6a6 100644 --- a/core/src/globals.js +++ b/core/src/globals.js @@ -49,6 +49,7 @@ import autosize from 'autosize' import Backbone from 'backbone' import 'bootstrap/js/tooltip' import Clipboard from 'clipboard' +import cssVars from 'css-vars-ponyfill' import dav from 'davclient.js' import DOMPurify from 'dompurify' import Handlebars from 'handlebars' @@ -68,6 +69,7 @@ window['$'] = $ window['autosize'] = autosize window['Backbone'] = Backbone window['Clipboard'] = Clipboard +window['cssVars'] = cssVars window['dav'] = dav window['DOMPurify'] = DOMPurify window['Handlebars'] = Handlebars |