diff options
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index 9d2cce0..8198355 100644 --- a/src/index.js +++ b/src/index.js @@ -22,8 +22,10 @@ import { api } from 'agl-js-api'; import * as app from './js/app'; import * as apps from './js/apps'; import * as time from './js/time'; +import * as background from './js/background'; window.apps = apps; window.time = time; api.init(); -app.init();
\ No newline at end of file +background.load(); +app.init(); |