summaryrefslogtreecommitdiffstats
path: root/core/src/main.js
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-01-28 15:06:01 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-01-28 15:06:01 +0100
commit4921359e71474e8ec82c8ab7815f3256d9def7af (patch)
tree4196ff86ead157889cbe4ce3ed05123c98a2e95f /core/src/main.js
parentcfdece7833ed407cfee63b73c9ae20fde848ffc3 (diff)
downloadnextcloud-server-4921359e71474e8ec82c8ab7815f3256d9def7af.tar.gz
nextcloud-server-4921359e71474e8ec82c8ab7815f3256d9def7af.zip
Move OCA.Apps to the server bundle
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src/main.js')
-rw-r--r--core/src/main.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/src/main.js b/core/src/main.js
index e7041e975f5..85e8200f10c 100644
--- a/core/src/main.js
+++ b/core/src/main.js
@@ -22,5 +22,9 @@
import '@babel/polyfill'
import './globals'
+import $ from 'jquery'
+import {registerAppsSlideToggle} from './OC/apps'
-import './OCP/index'
+$(document).ready(function () {
+ registerAppsSlideToggle();
+});