aboutsummaryrefslogtreecommitdiffstats
path: root/mascara
diff options
context:
space:
mode:
Diffstat (limited to 'mascara')
-rw-r--r--mascara/src/proxy.js10
-rw-r--r--mascara/src/ui.js5
2 files changed, 13 insertions, 2 deletions
diff --git a/mascara/src/proxy.js b/mascara/src/proxy.js
index e580076c1..8d91e4553 100644
--- a/mascara/src/proxy.js
+++ b/mascara/src/proxy.js
@@ -3,10 +3,18 @@ const SWcontroller = require('client-sw-ready-event/lib/sw-client.js')
const SwStream = require('sw-stream/lib/sw-stream.js')
const SetupUntrustedComunication = ('./lib/setup-untrusted-connection.js')
+let intervalDelay = Math.floor(Math.random() * (60000 - 1000)) + 1000
const background = new SWcontroller({
fileName: '/background.js',
+ letBeIdle: false,
+ intervalDelay,
})
-
+window.onfocus = () => {
+ background.sendMessage('wakeUp')
+ .catch((err) => {
+ console.error('problem with wake up', err)
+ })
+}
const pageStream = new ParentStream()
background.on('ready', (_) => {
let swStream = SwStream({
diff --git a/mascara/src/ui.js b/mascara/src/ui.js
index c4866867b..37bb043b8 100644
--- a/mascara/src/ui.js
+++ b/mascara/src/ui.js
@@ -18,10 +18,13 @@ const container = document.getElementById('app-content')
var name = 'popup'
window.METAMASK_UI_TYPE = name
+let intervalDelay = Math.floor(Math.random() * (60000 - 1000)) + 1000
+
const background = new SWcontroller({
fileName: '/background.js',
+ letBeIdel: false,
+ intervalDelay,
})
-
// Setup listener for when the service worker is read
background.on('ready', (readSw) => {
let connectionStream = SwStream({