git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1822939
)
Disabled an extra event binding.
author
John Resig
<jeresig@gmail.com>
Mon, 5 Jan 2009 23:06:57 +0000
(23:06 +0000)
committer
John Resig
<jeresig@gmail.com>
Mon, 5 Jan 2009 23:06:57 +0000
(23:06 +0000)
test/unit/event.js
patch
|
blob
|
history
diff --git
a/test/unit/event.js
b/test/unit/event.js
index
6c8573b
..
dcbd72c
100644
(file)
--- a/
test/unit/event.js
+++ b/
test/unit/event.js
@@
-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();