Add asset folders and cache busting to worker.js.

This commit is contained in:
John-David Dalton
2013-09-30 18:53:04 -07:00
parent 3d092df56d
commit 02e5cc1da8
7 changed files with 5 additions and 5 deletions

6
test/asset/worker.js Normal file
View File

@@ -0,0 +1,6 @@
addEventListener('message', function(e) {
if (e.data) {
importScripts('../' + e.data);
postMessage(_.VERSION);
}
}, false);