summaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorHumberto Alfonso Díaz <humberto.alfonso@asvito.es>2019-12-05 13:06:24 +0100
committerLorenzo Tilve <ltilve@igalia.com>2020-02-04 19:20:13 +0100
commit98b144f23ce771a22dce73c827be7924993cfca5 (patch)
tree80b0bdeaa335fab568181f966b2790cc334f59a5 /src/index.js
parent9a25f5f94900b0474b6c5f2fff254a3418ca7f38 (diff)
FUNCT Add wifi support
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
index 00da226..879e10e 100644
--- a/src/index.js
+++ b/src/index.js
@@ -18,9 +18,12 @@ import { init } from './js/app';
import { api } from 'agl-js-api';
import * as bluetooth from './js/bluetooth';
+import * as wifi from './js/wifi';
/* CSS */
import './styles/app.scss';
+window.bluetooth = bluetooth;
+window.wifi = wifi;
api.init();
init();