diff options
author | Kris Borchers <kris.borchers@gmail.com> | 2013-01-17 00:28:41 -0600 |
---|---|---|
committer | Kris Borchers <kris.borchers@gmail.com> | 2013-01-17 00:28:41 -0600 |
commit | 34409e7ddd58b3ccfed8175f7febd896ffea9e82 (patch) | |
tree | bc20a3245dea2cb384c47164cce03963b79fc461 /tests/visual/dialog | |
parent | 92bcef9305baf6d496d743f16e125d12820140cf (diff) | |
download | jquery-ui-34409e7ddd58b3ccfed8175f7febd896ffea9e82.tar.gz jquery-ui-34409e7ddd58b3ccfed8175f7febd896ffea9e82.zip |
Updating to jQuery 1.9.0
Diffstat (limited to 'tests/visual/dialog')
-rw-r--r-- | tests/visual/dialog/animated.html | 2 | ||||
-rw-r--r-- | tests/visual/dialog/complex-dialogs.html | 2 | ||||
-rw-r--r-- | tests/visual/dialog/form.html | 2 | ||||
-rw-r--r-- | tests/visual/dialog/performance.html | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/tests/visual/dialog/animated.html b/tests/visual/dialog/animated.html index 07097fbfa..639027371 100644 --- a/tests/visual/dialog/animated.html +++ b/tests/visual/dialog/animated.html @@ -4,7 +4,7 @@ <meta charset="utf-8"> <title>Dialog Visual Test</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.widget.js"></script> <script src="../../../ui/jquery.ui.mouse.js"></script> diff --git a/tests/visual/dialog/complex-dialogs.html b/tests/visual/dialog/complex-dialogs.html index 9cc2d1416..3d4e3b721 100644 --- a/tests/visual/dialog/complex-dialogs.html +++ b/tests/visual/dialog/complex-dialogs.html @@ -4,7 +4,7 @@ <meta charset="utf-8"> <title>Dialog Visual Test</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.widget.js"></script> <script src="../../../ui/jquery.ui.mouse.js"></script> diff --git a/tests/visual/dialog/form.html b/tests/visual/dialog/form.html index ed70ec69b..9d7913da9 100644 --- a/tests/visual/dialog/form.html +++ b/tests/visual/dialog/form.html @@ -4,7 +4,7 @@ <meta charset="utf-8"> <title>Dialog Visual Test</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.widget.js"></script> <script src="../../../ui/jquery.ui.mouse.js"></script> 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(); |