Merge commit 'd21ea7816e' as 'jquery-ui'

This commit is contained in:
Mark Schouten 2016-08-05 13:20:20 +02:00
commit e904a80717
629 changed files with 341074 additions and 0 deletions

24
jquery-ui/tests/jquery.js vendored Normal file
View file

@ -0,0 +1,24 @@
(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" ) {
url = "http://code.jquery.com/jquery-git.js";
} else {
url = "../../../external/jquery-" + ( version || "1.10.2" ) + "/jquery.js";
}
document.write( "<script src='" + url + "'></script>" );
}() );