Slide 59
Slide 59 text
// Redefine: $, window, document, undefined.
var APP = (function($, window, document, undefined) {
// Expose contents of APP.
return {
// APP.go
go: function() {
// ...
},
// APP.init
init: {
// ...
},
// APP.util
util: {
// ...
}
}
// Parameters: Zepto/jQuery, window, document.
})(typeof Zepto === 'function' ? Zepto : jQuery, this, this.document);
http://host.sonspring.com/handlebbbars/assets/js/application.js
Overview of Handlebbbars’ application.js file