Skip to content
Permalink
Browse files
Simplified a selector in the .live() tests.
  • Loading branch information
jeresig committed Nov 30, 2009
1 parent 6e5a6a2 commit 21dead4
Showing 1 changed file with 2 additions and 2 deletions.
@@ -796,8 +796,8 @@ test(".live()/.die()", function() {
equals( livee, 0, "Verify that second handler doesn't." );

// and one pair in inverse
jQuery('#liveHandlerOrder span#liveSpan2').live('click', function(){ livee++; });
jQuery('#liveHandlerOrder span#liveSpan2 a').live('click', function(){ lived++; return false; });
jQuery('span#liveSpan2').live('click', function(){ livee++; });
jQuery('span#liveSpan2 a').live('click', function(){ lived++; return false; });

lived = 0;
livee = 0;

0 comments on commit 21dead4

Please sign in to comment.