summaryrefslogtreecommitdiffstats
path: root/core/src/main.js
diff options
context:
space:
mode:
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();
+});