diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-21 11:00:42 +0200 |
---|---|---|
committer | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-21 11:00:42 +0200 |
commit | aac66099e68d635cbb5945366e00232abf868bdb (patch) | |
tree | 68d22601d2d71736b53a95652d40bbaef019ae4e /src/index.js | |
parent | 10d97b609b159fb4318c8f3681cf1f857fa34ede (diff) |
FUNCT Basic support to launch apps
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index 7ffa614..007f72f 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,11 @@ /* JS */ import '@iconfu/svg-inject'; import './js/AFB.js'; -import './js/app.js'; +import { init, launch } from './js/app.js'; /* CSS */ import './styles/app.scss'; + +window.launch = launch; + +document.addEventListener('DOMContentLoaded', init);
\ No newline at end of file |