Add worker suffix

This commit is contained in:
Joshua Peek 2012-07-02 14:33:33 -05:00
commit e4a3e79535

View file

@ -83,7 +83,7 @@ exports.moduleUrl = function(name) {
} else if (component === "theme") {
return this.get("themePath") + "/theme-" + base + this.get("suffix");
} else if (component == "worker") {
return this.get("workerPath") + "/" + base + this.get("suffix");
return this.get("workerPath") + "/worker-" + base + this.get("suffix");
}
};