diff options
author | Ariel Flesler <aflesler@gmail.com> | 2008-12-25 20:13:42 +0000 |
---|---|---|
committer | Ariel Flesler <aflesler@gmail.com> | 2008-12-25 20:13:42 +0000 |
commit | 654d946ead6bc1f995c04af2abc02da30cfe4f74 (patch) | |
tree | 531ee9db4ea6154553b4dbf8197412d8c84cc72d /test/unit/fx.js | |
parent | 0a8f96ac3d37f637ab433c037d4f807e8ef94bbe (diff) | |
download | jquery-654d946ead6bc1f995c04af2abc02da30cfe4f74.tar.gz jquery-654d946ead6bc1f995c04af2abc02da30cfe4f74.zip |
jquery fx: Closes #3219. jQuery.fn.toggle can accept a boolean argument indicating show/hide.
Diffstat (limited to 'test/unit/fx.js')
-rw-r--r-- | test/unit/fx.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/unit/fx.js b/test/unit/fx.js index f8b63835e..8af92979e 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -155,13 +155,20 @@ test("stop(clearQueue, gotoEnd)", function() { }); test("toggle()", function() { - expect(3); + expect(6); var x = jQuery("#foo"); ok( x.is(":visible"), "is visible" ); x.toggle(); ok( x.is(":hidden"), "is hidden" ); x.toggle(); ok( x.is(":visible"), "is visible again" ); + + x.toggle(true); + ok( x.is(":visible"), "is visible" ); + x.toggle(false); + ok( x.is(":hidden"), "is hidden" ); + x.toggle(true); + ok( x.is(":visible"), "is visible again" ); }); var visible = { |