Disabled an extra event binding.
authorJohn Resig <jeresig@gmail.com>
Mon, 5 Jan 2009 23:06:57 +0000 (23:06 +0000)
committerJohn Resig <jeresig@gmail.com>
Mon, 5 Jan 2009 23:06:57 +0000 (23:06 +0000)
test/unit/event.js

index 6c8573b..dcbd72c 100644 (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();