summaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorHumberto Alfonso Díaz <humberto.alfonso@asvito.es>2019-12-18 21:45:12 +0100
committerLorenzo Tilve <ltilve@igalia.com>2020-02-04 20:36:30 +0100
commit51e268c34ecfeb541c187f5a361c5c5baa76fbca (patch)
tree252ec4695f0069c4d6073ffcfc722e786091311a /src/index.js
parente54bb3ce8ee606fba0cb2ccf67d27cd41d614745 (diff)
FUNCT Update launcher
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.js b/src/index.js
index 775b3af..a73afa3 100644
--- a/src/index.js
+++ b/src/index.js
@@ -15,11 +15,11 @@
*/
/* JS */
-import { init, launch } from './js/app.js';
+import * as app from './js/app.js';
/* CSS */
import './styles/app.scss';
-window.launch = launch;
+window.app = app;
-document.addEventListener('DOMContentLoaded', init); \ No newline at end of file
+document.addEventListener('DOMContentLoaded', app.init); \ No newline at end of file