summaryrefslogtreecommitdiff
path: root/bug/bug/jquery-validation-1.8.1/test/jquery.js
diff options
context:
space:
mode:
Diffstat (limited to 'bug/bug/jquery-validation-1.8.1/test/jquery.js')
-rw-r--r--bug/bug/jquery-validation-1.8.1/test/jquery.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/bug/bug/jquery-validation-1.8.1/test/jquery.js b/bug/bug/jquery-validation-1.8.1/test/jquery.js
new file mode 100644
index 0000000..100c446
--- /dev/null
+++ b/bug/bug/jquery-validation-1.8.1/test/jquery.js
@@ -0,0 +1,25 @@
+(function() {
+
+var parts = document.location.search.slice( 1 ).split( "&" ),
+ length = parts.length,
+ i = 0,
+ current,
+ version = "1.3.2",
+ file = "http://code.jquery.com/jquery-git.js";
+
+for ( ; i < length; i++ ) {
+ current = parts[ i ].split( "=" );
+ if ( current[ 0 ] === "jquery" ) {
+ version = current[ 1 ];
+ break;
+ }
+}
+
+if (version != "git") {
+ file = "../lib/jquery-" + version + ".js";
+}
+
+
+document.write( "<script src='" + file + "'></script>" );
+
+})();