another worker loader tweak

This commit is contained in:
Fabian Jakobs 2011-08-11 14:21:04 +02:00
commit 00faf6dc9c

View file

@ -104,7 +104,7 @@ var WorkerClient = function(topLevelNamespaces, packagedJs, module, classname) {
this.$normalizePath = function(path) {
if (!path.match(/^\w+:/))
path = location.protocol + "//" + location.host + location.pathname.replace(/\/.*?$/, "/") + "/" + path.replace(/^\//, "");
path = location.protocol + "//" + location.host + location.pathname.replace(/\/.*?$/, "") + "/" + path.replace(/^\//, "");
return path;
};