diff options
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/background.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/js/background.js b/src/js/background.js index 38408ed..7cdaf0b 100644 --- a/src/js/background.js +++ b/src/js/background.js @@ -3,9 +3,8 @@ 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); - }); + //afmMain.start(configjson.background).then(function(result) { + // console.log("loading background: " + result); + //}); + console.log("Empty for background"); } - - |