diff options
Diffstat (limited to 'src/js/background.js')
-rw-r--r-- | src/js/background.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/js/background.js b/src/js/background.js index 38408ed..4a9bd69 100644 --- a/src/js/background.js +++ b/src/js/background.js @@ -1,11 +1,7 @@ -import { homescreen, afmMain } from 'agl-js-api'; - var configjson = require('../config.json'); export function load() { - afmMain.start(configjson.background).then(function(result) { - console.log("loading background: " + result); - }); + navigator.appService.start(configjson.background); } |