summaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorHumberto Alfonso Díaz <humberto.alfonso@asvito.es>2019-09-23 11:32:30 +0200
committerLorenzo Tilve <ltilve@igalia.com>2020-02-04 19:20:13 +0100
commitc3a5d63e11e85d617a131160e8af6baed55fbfb6 (patch)
tree3885f63801f453638f868c4b76ff0fc5d6a6c8e3 /src/index.js
parent650b416279c9e4264b519edfc996b513aadc69b7 (diff)
FUNCT Add support to modify sliders
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
index 142b8d1..fa62684 100644
--- a/src/index.js
+++ b/src/index.js
@@ -16,6 +16,13 @@
/* JS */
import './js/AFB.js';
+import { init } from './js/app';
+import { increase, decrease, change } from './js/sliders';
/* CSS */
import './styles/app.scss';
+
+window.increase = increase;
+window.decrease = decrease;
+window.change = change;
+init(); \ No newline at end of file