diff options
Diffstat (limited to 'tests/jquery.js')
-rw-r--r-- | tests/jquery.js | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/jquery.js b/tests/jquery.js deleted file mode 100644 index 43ba2750a..000000000 --- a/tests/jquery.js +++ /dev/null @@ -1,24 +0,0 @@ -(function() { - -var current, version, url, - parts = document.location.search.slice( 1 ).split( "&" ), - length = parts.length, - i = 0; - -for ( ; i < length; i++ ) { - current = parts[ i ].split( "=" ); - if ( current[ 0 ] === "jquery" ) { - version = current[ 1 ]; - break; - } -} - -if ( version === "git" || version === "git1" ) { - url = "http://code.jquery.com/jquery-" + version + ".js"; -} else { - url = "../../../external/jquery-" + ( version || "1.11.2" ) + "/jquery.js"; -} - -document.write( "<script src='" + url + "'></script>" ); - -}() ); |