diff options
Diffstat (limited to 'build/speed/index.html')
-rwxr-xr-x | build/speed/index.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/build/speed/index.html b/build/speed/index.html index 58fd441d9..b15618921 100755 --- a/build/speed/index.html +++ b/build/speed/index.html @@ -5,8 +5,11 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Speed Test</title> - <script src="../dist/jquery.js" type="text/javascript"></script> - <script src="jquery-1.1.2.js" type="text/javascript"></script> + <script src="jquery-basis.js" type="text/javascript"></script> + <script src="../../dist/jquery.js" type="text/javascript"></script> + <script type="text/javascript"> + jQuery.noConflict(); + </script> <link rel="stylesheet" href="benchmarker.css" type="text/css" media="screen" /> </head> @@ -15,7 +18,7 @@ <h1>Speed Test</h1> <div id="badid"></div> <div id="time-test"> -<p>Using the following selector expressions (<span id="times">5</span> times each):</p> +<p>Using the following selector expressions (<input type="text" id="times" maxlength="5" size="5" value="20"/> times each):</p> <p>NOTE: Number shown is an average.</p> <div class="buttons"> <button class="selectAll">Select All</button> @@ -502,7 +505,7 @@ </div> </div> <script type="text/javascript" charset="utf-8"> - jQuery.benchmarker = {libraries: ["jQOld", "jQuery"]}; + jQuery.benchmarker = {libraries: ["$", "jQuery"]}; </script> <script src="benchmarker.js"></script> |