Skip to content

Instantly share code, notes, and snippets.

@andrewvc
Created March 30, 2011 22:30
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 andrewvc/895441 to your computer and use it in GitHub Desktop.
Save andrewvc/895441 to your computer and use it in GitHub Desktop.
// Generic JS boilerplate for browser-side js source files.
window.myApp = {}; // Should only appear in one source file.
(function($) {
window.myApp.myFeature = {
init: function() {
//...
},
property: "value";
}
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment