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.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/src/main.js b/core/src/main.js
index 1f8f12c1a0f..b8c1c23628f 100644
--- a/core/src/main.js
+++ b/core/src/main.js
@@ -24,15 +24,15 @@ import '@babel/polyfill'
import './Polyfill/index'
// If you remove the line below, tests won't pass
+// eslint-disable-next-line no-unused-vars
import OC from './OC/index'
import './globals'
import './jquery/index'
-import {initCore} from './init'
-import {registerAppsSlideToggle} from './OC/apps'
+import { initCore } from './init'
+import { registerAppsSlideToggle } from './OC/apps'
-$(document).ready(function () {
- initCore();
-
- registerAppsSlideToggle();
-});
+$(document).ready(function() {
+ initCore()
+ registerAppsSlideToggle()
+})