diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-06 20:41:24 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:28 -0400 |
commit | 42566bdd037ac57cf7d6d7a5d059db2ba42518d9 (patch) | |
tree | d625c735392d22e1d09ae4bb78b26e1842b14ad7 /tests/jquery.js | |
parent | 669e62d61b52a31efc7666bf95d0bfe2df2f839d (diff) | |
download | jquery-ui-42566bdd037ac57cf7d6d7a5d059db2ba42518d9.tar.gz jquery-ui-42566bdd037ac57cf7d6d7a5d059db2ba42518d9.zip |
Tests: Remove old test infrastructure
Ref #10119
Ref gh-1528
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>" ); - -}() ); |