aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorJose Dapena Paz <jdapena@igalia.com>2022-02-26 12:16:16 +0100
committerJose Dapena Paz <jdapena@igalia.com>2022-03-01 18:04:03 +0100
commit8ad6b022196ec689eed08c0f3315a53723d4af0c (patch)
treead749ca05d0c3948beec81d4f0c3f3a852e8456a /src/index.js
parent48970567f1943fb70ef1526827c21548d23695e7 (diff)
Migrate to new application framework
First, move to use the appService API added as injection in AGL chromium. Then, added stubs for the network and weather APIs as there is no API available right now for them. Bug-AGL: SPEC-4250 Signed-off-by: Jose Dapena Paz <jdapena@igalia.com> Change-Id: I974097edcef6318585e4e79360dbec6fea7cf480
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/index.js b/src/index.js
index 8198355..aac4372 100644
--- a/src/index.js
+++ b/src/index.js
@@ -17,8 +17,6 @@
/* CSS */
import './styles/app.scss';
-import { api } from 'agl-js-api';
-
import * as app from './js/app';
import * as apps from './js/apps';
import * as time from './js/time';
@@ -26,6 +24,5 @@ import * as background from './js/background';
window.apps = apps;
window.time = time;
-api.init();
background.load();
app.init();