Skip to content

Instantly share code, notes, and snippets.

@matsko
Created December 2, 2013 23:39
Show Gist options
  • Save matsko/7761177 to your computer and use it in GitHub Desktop.
Save matsko/7761177 to your computer and use it in GitHub Desktop.
one: function(element, type, fn) {
element = jqLite(element);
element.on(type, fn);
element.on(type, function onFn() {
element.off(type, onFn);
element.off(type, fn);
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment