mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-06-07 00:47:00 +03:00
Merge commit 'd21ea7816e
' as 'jquery-ui'
This commit is contained in:
commit
e904a80717
629 changed files with 341074 additions and 0 deletions
24
jquery-ui/tests/jquery.js
vendored
Normal file
24
jquery-ui/tests/jquery.js
vendored
Normal 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>" );
|
||||
|
||||
}() );
|
Loading…
Add table
Add a link
Reference in a new issue