Skip to content

Instantly share code, notes, and snippets.

@jongacnik
Created May 31, 2014 22:14
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 jongacnik/69c55dd62cd1f4b860f8 to your computer and use it in GitHub Desktop.
Save jongacnik/69c55dd62cd1f4b860f8 to your computer and use it in GitHub Desktop.
Boiler Module Template
/**
* Boiler Module
*/
Modules.Boiler = function(options) {
var _ = {
};
var self = {
options : $.extend({
option : 'option'
callback : function() { }
}, options),
events : function() {
}
};
self.events();
return {
events : self.events
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment