aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/background.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/background.js')
-rw-r--r--src/js/background.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/js/background.js b/src/js/background.js
index 4a9bd69..aa028fd 100644
--- a/src/js/background.js
+++ b/src/js/background.js
@@ -1,7 +1,9 @@
var configjson = require('../config.json');
export function load() {
- navigator.appService.start(configjson.background);
+ setTimeout(function() {
+ navigator.appService.start(configjson.background);
+ }, 2000);
}