Skip to content

Instantly share code, notes, and snippets.

@jonvuri
Last active December 14, 2015 03:29
Show Gist options
  • Save jonvuri/5021259 to your computer and use it in GitHub Desktop.
Save jonvuri/5021259 to your computer and use it in GitHub Desktop.
IIFE
deleteButton.addEventListener('click', function(evt) {
evt.preventDefault();
deleteCode(article.id);
return false;
});
deleteButton.addEventListener('click', (function (article) {
return function(evt) {
evt.preventDefault();
deleteCode(article.id);
return false;
});
})(article));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment