diff options
Diffstat (limited to 'tests/visual/dialog/performance.html')
-rw-r--r-- | tests/visual/dialog/performance.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/visual/dialog/performance.html b/tests/visual/dialog/performance.html index 8f63d6a69..908af794c 100644 --- a/tests/visual/dialog/performance.html +++ b/tests/visual/dialog/performance.html @@ -4,7 +4,7 @@ <meta charset="utf-8"> <title>Dialog Visual Test - Modal Dialog in Large DOM</title> <link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css"> - <script src="../../../jquery-1.8.3.js"></script> + <script src="../../../jquery-1.9.0.js"></script> <script src="../../../ui/jquery.ui.core.js"></script> <script src="../../../ui/jquery.ui.position.js"></script> <script src="../../../ui/jquery.ui.widget.js"></script> @@ -16,7 +16,7 @@ <script> $(function() { var start, - html = new Array( 500 ).join( $( "#template" ).html() ); + html = new Array( 500 ).join( $.trim( $( "#template" ).html() ) ); $( html ).appendTo( "body" ); start = $.now(); |