1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| 'use strict';
|
| /**
| * Route configuration for the RDash module.
| */
| angular.module('RDash').config(['$stateProvider', '$urlRouterProvider',
| function ($stateProvider, $urlRouterProvider) {
|
| // For unmatched routes
| $urlRouterProvider.otherwise('/');
|
| // Application routes
| $stateProvider
| .state('index', {
| url: '/',
| templateUrl: 'assets/rdash/dashboard.html'
| })
| .state('tables', {
| url: '/tables',
| templateUrl: 'assets/rdash/tables.html'
| });
| }
| ]);
|
|