Add ui.isForeign, add guards for Worker tests, and remove Dojo loader filter from test.

This commit is contained in:
John-David Dalton
2014-05-11 16:02:48 -07:00
parent d5c3b258f3
commit 0f8c20c3ab
4 changed files with 26 additions and 19 deletions

View File

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