wallet-core/extension/background/timerThread.js
2015-12-17 13:37:57 +01:00

11 lines
308 B
JavaScript

/**
* This file should be used as a WebWorker.
* Background pages in the WebExtensions model do
* not allow to schedule callbacks that should be called
* after a timeout. We can emulate this with WebWorkers.
*/
onmessage = function(e) {
self.setInterval(() => postMessage(true), e.data.interval);
}