Fix cache issues with workers in firefox
This commit is contained in:
@@ -19,6 +19,8 @@ var debug = function (msg) { console.log(msg); };
|
|||||||
var init = function (client, cb) {
|
var init = function (client, cb) {
|
||||||
debug('SW INIT');
|
debug('SW INIT');
|
||||||
|
|
||||||
|
require(['/api/config?cb=' + (+new Date()).toString(16)], function (ApiConfig) {
|
||||||
|
if (ApiConfig.requireConf) { require.config(ApiConfig.requireConf); }
|
||||||
require([
|
require([
|
||||||
'/common/requireconfig.js'
|
'/common/requireconfig.js'
|
||||||
], function (RequireConfig) {
|
], function (RequireConfig) {
|
||||||
@@ -142,6 +144,7 @@ var init = function (client, cb) {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
self.addEventListener('message', function (e) {
|
self.addEventListener('message', function (e) {
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ var debug = function (msg) { console.log(msg); };
|
|||||||
var init = function (client, cb) {
|
var init = function (client, cb) {
|
||||||
debug('SharedW INIT');
|
debug('SharedW INIT');
|
||||||
|
|
||||||
|
require(['/api/config?cb=' + (+new Date()).toString(16)], function (ApiConfig) {
|
||||||
|
if (ApiConfig.requireConf) { require.config(ApiConfig.requireConf); }
|
||||||
require([
|
require([
|
||||||
'/common/requireconfig.js'
|
'/common/requireconfig.js'
|
||||||
], function (RequireConfig) {
|
], function (RequireConfig) {
|
||||||
@@ -143,6 +145,7 @@ var init = function (client, cb) {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
onconnect = function(e) {
|
onconnect = function(e) {
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ localStorage = {
|
|||||||
getItem: function (k) { return localStorage[k]; }
|
getItem: function (k) { return localStorage[k]; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
require(['/api/config?cb=' + (+new Date()).toString(16)], function (ApiConfig) {
|
||||||
|
if (ApiConfig.requireConf) { require.config(ApiConfig.requireConf); }
|
||||||
require([
|
require([
|
||||||
'/common/requireconfig.js'
|
'/common/requireconfig.js'
|
||||||
], function (RequireConfig) {
|
], function (RequireConfig) {
|
||||||
@@ -98,3 +100,4 @@ require([
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user