Skip to content

Instantly share code, notes, and snippets.

@zmcartor
Created April 16, 2012 20:23
Show Gist options
  • Save zmcartor/2401263 to your computer and use it in GitHub Desktop.
Save zmcartor/2401263 to your computer and use it in GitHub Desktop.
Backbone Namespacing
//Make sure to namespace stuff :)
window.Poc = window.Poc || {};
window.Poc.Models = window.Poc.Models || {};
window.Poc.Collections = window.Poc.Collections || {};
window.Poc.Views = window.Poc.Views || {};
window.Poc.Dispatcher = {};
/******************************
****** Backbone Objects ******
******************************/
$(document).ready(function(){
// Create global-hookable event dispatcher
_.extend(window.Poc.Dispatcher, Backbone.Events);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment