X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fevent%2Fevent.js;h=6d889836967004337a188bcced7930789b5154eb;hb=f12df1df853d9ddabe45164f03c811ba01b6bfd2;hp=86a93d4a7e039853d6f5dcce86226f8a3a8e5395;hpb=dbee06de85859af59591813d3004e6695b8bb278;p=jquery.git diff --git a/src/event/event.js b/src/event/event.js index 86a93d4..6d88983 100644 --- a/src/event/event.js +++ b/src/event/event.js @@ -1592,20 +1592,16 @@ new function(){ // Finally, handle events that only fire once jQuery.fn["one"+o] = function(f){ - // Attach the event listener - return this.each(function(){ - - var count = 0; - - // Add the event - jQuery.event.add( this, o, function(e){ - // If this function has already been executed, stop - if ( count++ ) return; - - // And execute the bound function - return f.apply(this, [e]); - }); - }); + // save cloned reference to this + var element = jQuery(this); + var handler = function() { + // unbind itself when executed + element.unbind(o, handler); + element = null; + // apply original handler with the same arguments + f.apply(this, arguments); + }; + return this.bind(o, handler); }; };