jquery event: Fixing event.currentTarget for live().

This commit is contained in:
Ariel Flesler 2009-02-23 13:27:48 +00:00
parent 883450b702
commit 48164ee603
2 changed files with 13 additions and 1 deletions

View file

@ -577,6 +577,7 @@ function liveHandler( event ){
});
jQuery.each(elems, function(){
event.currentTarget = this.elem;
if ( this.fn.call(this.elem, event, this.fn.data) === false )
return (stop = false);
});