Skip to content

Instantly share code, notes, and snippets.

@codylindley
Forked from nathansmith/module_pattern_init.js
Created January 15, 2010 05:30
Show Gist options
  • Select an option

  • Save codylindley/277836 to your computer and use it in GitHub Desktop.

Select an option

Save codylindley/277836 to your computer and use it in GitHub Desktop.
//
// Automatically calls all functions in APP.init
//
jQuery(document).ready(function() {
APP.go();
});
//
// Module pattern.
//
var APP = (function($) {
var private_var_1 = 'foo';
var private_var_2 = 'bar';
return {
go: function() {
for (var i in APP.init) {
APP.init[i]();
}
},
init: {
call_automatically_one: function() {
// Called on page-load.
},
call_automatically_two: function() {
// Called on page-load.
}
},
misc: {
call_specifically_one: function() {
// Must be called individually.
},
call_specifically_two: function() {
// Must be called individually.
}
}
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment