Skip to content

Instantly share code, notes, and snippets.

@stormwild
Forked from guilhermepontes/gist:4504091
Created January 12, 2013 14:54
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 stormwild/4518381 to your computer and use it in GitHub Desktop.
Save stormwild/4518381 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