Skip to content

Instantly share code, notes, and snippets.

@inkbase
Last active August 29, 2015 13:57
Show Gist options
  • Save inkbase/9521795 to your computer and use it in GitHub Desktop.
Save inkbase/9521795 to your computer and use it in GitHub Desktop.
JavaScript: Base module pattern
//Include jQuery if needed. Including it here will reduce HTTP requests
var base = {
init: function () {
//Do stuff
}
};
/*
//This can be used if jQuery is included above
$(document).ready(function () {
base.init();
});
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment