diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-01-28 15:06:01 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-01-28 15:06:01 +0100 |
commit | 4921359e71474e8ec82c8ab7815f3256d9def7af (patch) | |
tree | 4196ff86ead157889cbe4ce3ed05123c98a2e95f /core/src/main.js | |
parent | cfdece7833ed407cfee63b73c9ae20fde848ffc3 (diff) | |
download | nextcloud-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.js | 6 |
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(); +}); |