Skip to content
Permalink
Browse files
Fix #11257. Correct path to source files.
  • Loading branch information
rwaldron authored and dmethvin committed Jan 31, 2012
1 parent eefead3 commit 0944be0
Showing 1 changed file with 2 additions and 3 deletions.
@@ -70,8 +70,7 @@
*/

// javascript fallback using src files in case this is not run on a PHP server!
var baseURL = document.location.href.replace( /\/test\/.+/, "/"),
files = [
var files = [
"core",
"callbacks",
"deferred",
@@ -98,5 +97,5 @@
i = 0;

for ( ; i < len; i++ ) {
document.write("<script src=\"" + baseURL + "src/" + files[ i ] + ".js\"><"+"/script>");
document.write("<script src=\"../src/" + files[ i ] + ".js\"><"+"/script>");
}

0 comments on commit 0944be0

Please sign in to comment.