Skip to content

Instantly share code, notes, and snippets.

@guilhermepontes
Last active February 15, 2018 21:15
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save guilhermepontes/4504091 to your computer and use it in GitHub Desktop.
Save guilhermepontes/4504091 to your computer and use it in GitHub Desktop.
var app = app || {};
//object literal
app = {
init: function(){
this.cache();
this.bind();
},
cache: function(){
this.anchor = $('a');
},
bind: function(){
this.anchor.on('click', this.doSomething)
},
doSomething: function(){
console.log("Simple app.");
}
};
app.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment