Skip to content

Instantly share code, notes, and snippets.

@anthonyringoet
Created August 24, 2012 08:04
Show Gist options
  • Save anthonyringoet/3447314 to your computer and use it in GitHub Desktop.
Save anthonyringoet/3447314 to your computer and use it in GitHub Desktop.
module pattern snippet
var mod = (function (window, document, $, undefined) {
var my = {},
privateVar = 'bazinga';
my.init = function () {
// ...
}
return my;
})(window, document, jQuery);
// initialize
mod.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment