Disabled an extra event binding.

This commit is contained in:
John Resig 2009-01-05 23:06:57 +00:00
parent 1822939000
commit b1e161466c

View file

@ -373,7 +373,9 @@ test("trigger(eventObject, [data], [fn])", function() {
return "result";
});
$child.bind('foo', error );
// We should add this back in when we want to test the order
// in which event handlers are iterated.
//$child.bind('foo', error );
event = new jQuery.Event("foo");
$child.trigger( event, [1,2,3] ).unbind();