Advertisement
Guest User

Untitled

a guest
Jul 14th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*global console, Router */
  2. 'use strict';
  3.  
  4. Dashboard.Router = Backbone.Router.extend({
  5.   routes: {
  6.     'dashboard':                   'showDashboard',
  7.   },
  8.  
  9.   showDashboard: function() {
  10.  
  11.   },
  12.  
  13. });
  14. new Dashboard.Router();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement