Skip to content
Permalink
Browse files
Added test for #815
  • Loading branch information
jzaefferer committed Mar 25, 2007
1 parent 4b9bed9 commit eab0e57
Showing 1 changed file with 7 additions and 0 deletions.
@@ -104,4 +104,11 @@ test("Event.data is a global event object", function() {
$("select").each(function(i){
$(this).bind('change', i, selectOnChange);
}).trigger('change');
});

test("click event handler for checkbox gets fired twice, see #815", function() {
expect(1);
$("#check1").click(function() {
ok( true );
}).click();
});

0 comments on commit eab0e57

Please sign in to comment.