From e4a3e795357634a8756053d1cc66972dc4369bdd Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 2 Jul 2012 14:33:33 -0500 Subject: [PATCH] Add worker suffix --- lib/ace/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/config.js b/lib/ace/config.js index 6b5b3765..15916002 100644 --- a/lib/ace/config.js +++ b/lib/ace/config.js @@ -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"); } };