diff options
author | 2022-05-31 16:21:54 +0200 | |
---|---|---|
committer | 2022-06-01 11:04:37 +0200 | |
commit | 266985a5eddc7df30126e79105e22dfb1dae140c (patch) | |
tree | 3fe2dd59b9dbe642484f86aec55c8b5b567d4c97 /src/index.js | |
parent | 9fcfee6f23fb9aa2f59e65a8b3f5bdb9aa64ec23 (diff) |
Adapt to new application framework
Drop usage of agl-js-api, and just provide a mock for mediaplayer
calls.
Bug-AGL: SPEC-4248
Signed-off-by: Jose Dapena Paz <jdapena@igalia.com>
Change-Id: I8461713c56f2a81e3e1eda441e10da45f96c8087
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/index.js b/src/index.js index f1644ae..9ad7774 100644 --- a/src/index.js +++ b/src/index.js @@ -18,13 +18,10 @@ import * as app from './js/app'; import * as player from './js/player'; import * as playlist from './js/playlist'; -import { api } from 'agl-js-api'; - /* CSS */ import './styles/app.scss'; window.player = player; window.playlist = playlist; -api.init(); app.init(); |