An bootstrap that uses the Module design pattern.
Clone into your project.
git clone git@github.com:guilhermepontes/module-pattern-bootstrap.git
var init = {
ready : function() {
sampleApplication.init();
},
load : function() {
sampleApplication.load();
}
};
$( document ).ready( init.ready )
$( window ).load( init.load );
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D