Always use the JS assets processed by Minify.

This allows the preprocessing that will restrict scope of files to be done once in Minify.
This commit is contained in:
Chad Weider 2012-01-17 01:22:23 -08:00
parent 2b5d7a0048
commit 9e16b9a575
2 changed files with 13 additions and 1 deletions

View file

@ -230,6 +230,7 @@ function Ace2Editor()
}
for (var i = 0, ii = remoteFiles.length; i < ii; i++) {
var file = remoteFiles[i];
file = file.replace(/^\.\.\/static\/js\//, '../minified/');
buffer.push('<script type="application/javascript" src="' + file + '"><\/script>');
}
}