mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
19dfa2dc1b
Ref gh-1266
27 lines
505 B
JavaScript
27 lines
505 B
JavaScript
(function() {
|
|
|
|
var parts = document.location.search.slice( 1 ).split( "&" ),
|
|
length = parts.length,
|
|
i = 0,
|
|
current,
|
|
version,
|
|
url;
|
|
|
|
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>" );
|
|
|
|
}() );
|