diff options
author | Felix Nagel <info@felixnagel.com> | 2012-11-10 01:40:05 +0100 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2012-11-10 01:40:05 +0100 |
commit | 7ce8e0515ea7cc513c3c065946c85cf2d1aa5652 (patch) | |
tree | a0337f9f7d8d0d27a7cdb78a63ee152d8357b32f /tests/unit/swarminject.js | |
parent | 94b3a65c66e338fc6f697d13fc77d7f19b8666ae (diff) | |
parent | d6c6b7dc3381432f50212b4f458931b2521ecb56 (diff) | |
download | jquery-ui-7ce8e0515ea7cc513c3c065946c85cf2d1aa5652.tar.gz jquery-ui-7ce8e0515ea7cc513c3c065946c85cf2d1aa5652.zip |
Merge branch 'master' into selectmenu
Diffstat (limited to 'tests/unit/swarminject.js')
-rw-r--r-- | tests/unit/swarminject.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/swarminject.js b/tests/unit/swarminject.js index 78d37ef46..ebd3ccfac 100644 --- a/tests/unit/swarminject.js +++ b/tests/unit/swarminject.js @@ -1,9 +1,10 @@ // load testswarm agent (function() { - var url = window.location.search; + var url = window.location.search; url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) ); if ( !url || url.indexOf("http") !== 0 ) { return; } - document.write( "<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + (new Date()).getTime() + "'></scr" + "ipt>" ); + document.write( "<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + + (new Date()).getTime() + "'></scr" + "ipt>" ); })(); |