Skip to content

Instantly share code, notes, and snippets.

@willrjmarshall
Created October 18, 2011 04: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 willrjmarshall/1294597 to your computer and use it in GitHub Desktop.
Save willrjmarshall/1294597 to your computer and use it in GitHub Desktop.
var Threshold = {
Models: {},
Collections: {},
Views: {},
Routers: {},
init: function() {
if (window.url == "blah") {
projectShowInit();
} else {
projectsInit();
}
Backbone.history.start();
}
};
var projectShowInit = function() {
window.ProjectView = new Threshold.Routers.ProjectShow();
}
var projectsInit = function() {
window.ProjectDashboard = new Threshold.Routers.ProjectDashboard();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment