correct behavior

This commit is contained in:
Sam 2015-03-13 18:33:47 +11:00
parent 01fcc7503a
commit f6d56fef9e

View File

@ -34,7 +34,8 @@ export default function loadScript(url, opts) {
var cdnUrl = url; var cdnUrl = url;
if (Discourse.CDN && url[0] === "/") { if (Discourse.CDN && url[0] === "/") {
cdnUrl = Discourse.CDN + url; // ensure stuff is rooted correctly
cdnUrl = Discourse.CDN.replace(/\/$/,"") + url.substr(1);
} }
// Some javascript depends on the path of where it is loaded (ace editor) // Some javascript depends on the path of where it is loaded (ace editor)