Skip to content

Instantly share code, notes, and snippets.

@kentaromiura
Created February 25, 2010 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentaromiura/314382 to your computer and use it in GitHub Desktop.
Save kentaromiura/314382 to your computer and use it in GitHub Desktop.
Events.implement('oneShot', function(evt, fx) {
function once() {
fx.run(arguments);
this.removeEvent(evt, once);
}
this.addEvent(evt, once);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment