Removed duplicated show/hide/toggle, added test for toggle(), started documentation of event properties/methods

This commit is contained in:
Jörn Zaefferer
2007-01-09 17:15:22 +00:00
parent d3d7d7ebff
commit 41cc839a2d
3 changed files with 106 additions and 58 deletions

View File

@@ -9,4 +9,13 @@ test("animate(Hash, Object, Function) - assert that animate doesn't modify its a
ok( hash.opacity == hashCopy.opacity, 'Check if animate changed the hash parameter' );
start();
});
});
test("toggle()", function() {
var x = $("#foo");
ok( x.is(":visible") );
x.toggle();
ok( x.is(":hidden") );
x.toggle();
ok( x.is(":visible") );
});