diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-01-28 14:49:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-28 14:49:34 +0100 |
commit | cfdece7833ed407cfee63b73c9ae20fde848ffc3 (patch) | |
tree | 810f617ea388ccf4cbf7be94ff54a7eb3af3b426 /core/src/globals.js | |
parent | b5b8a17222b33bcbfe677cf68a511f688dbd09dc (diff) | |
parent | 87bc9f1fa1fceccb248254030aaed16da5e6aed8 (diff) | |
download | nextcloud-server-cfdece7833ed407cfee63b73c9ae20fde848ffc3.tar.gz nextcloud-server-cfdece7833ed407cfee63b73c9ae20fde848ffc3.zip |
Merge pull request #13860 from nextcloud/refactor/oc-oca-namespace-bundle
Add OC and OCA namespace declarations to the bundle
Diffstat (limited to 'core/src/globals.js')
-rw-r--r-- | core/src/globals.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/src/globals.js b/core/src/globals.js index 770ae223afe..a9884f335e0 100644 --- a/core/src/globals.js +++ b/core/src/globals.js @@ -48,6 +48,10 @@ import 'snap.js/dist/snap' import 'strengthify' import 'strengthify/strengthify.css' +import OC from './OC/index' +import OCP from './OCP/index' +import OCA from './OCA/index' + window['_'] = _ window['$'] = $ window['autosize'] = autosize @@ -64,3 +68,7 @@ window['jQuery'] = $ window['marked'] = marked window['md5'] = md5 window['moment'] = moment + +window['OC'] = OC +window['OCP'] = OCP +window['OCA'] = OCA |