Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 6, 2012
1 parent 20550b5 commit ea80a1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var fn = delegate.bind(ul, 'li a', 'click', function(e){
console.log(e.target); console.log(e.target);
if (++n == 3) { if (++n == 3) {
console.log('unbind'); console.log('unbind');
delegate.unbind('click', fn, false); delegate.unbind(ul, 'click', fn, false);
} }
}, false); }, false);
``` ```
Expand Down

0 comments on commit ea80a1b

Please sign in to comment.