Skip to content

Instantly share code, notes, and snippets.

@Chandler
Last active December 14, 2015 00:59
Show Gist options
  • Save Chandler/5002676 to your computer and use it in GitHub Desktop.
Save Chandler/5002676 to your computer and use it in GitHub Desktop.
(function($){
/* router */
var AppRouter = Backbone.Router.extend({
routes: {
"": "home",
}
});
var app_router = new AppRouter;
app_router.on('route:home', function( id ){
/*stuff*/
});
Backbone.history.start({ pushState: true });
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment