Skip to content
Permalink
Browse files
Fixed issues with oneEvent events.
  • Loading branch information
jeresig committed Jul 16, 2006
1 parent 7d57c67 commit f5f6cbc
Showing 1 changed file with 11 additions and 10 deletions.
@@ -120,17 +120,18 @@ new function(){
// Finally, handle events that only fire once
jQuery.fn["one"+o] = function(f){
// Attach the event listener
return this.bind(o, function(e){
// TODO: Remove the event listener, instead of this hack

// If this function has already been executed, stop
if ( this[o+f] !== null ) return;

// Otherwise, mark as having been executed
this[o+f]++;
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]);
// And execute the bound function
return f.apply(this, [e]);
});
});
};

0 comments on commit f5f6cbc

Please sign in to comment.