Skip to content

Instantly share code, notes, and snippets.

@mishelashala
Last active December 10, 2015 17:16
Show Gist options
  • Save mishelashala/bd3fc5f9432859f9c189 to your computer and use it in GitHub Desktop.
Save mishelashala/bd3fc5f9432859f9c189 to your computer and use it in GitHub Desktop.
var app = {
cache() {
this.el = document.querySelector('#some-id');
this.bindElements();
}
bindElement() {
this.el.addEventListener('click', this.handleClick);
},
handleClick() {
alert('¡No toques mis cosas!');
},
init() {
this.cache();
}
};
app.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment