Skip to content

Instantly share code, notes, and snippets.

@ourmaninamsterdam
Created May 13, 2014 10:12
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 ourmaninamsterdam/560ccdf106d96b620eb0 to your computer and use it in GitHub Desktop.
Save ourmaninamsterdam/560ccdf106d96b620eb0 to your computer and use it in GitHub Desktop.
Partially applied fn [WIP]
function delegateEvent(selector, handler) {
var that = this;
return function(e) {
var elem = e.target;
if(new RegExp(selector,'gi').test(elem.className)){
if(typeof handler === 'function'){
return handler;
}
}
return this;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment