| 123456789101112131415161718192021222324252627282930 |
- 'use strict';
- /**
- * @ngdoc overview
- * @name deivDashApp
- * @description
- * # deivDashApp
- *
- * Main module of the application.
- */
- angular
- .module('deivDashApp', [
- 'ngResource',
- 'ngRoute',
- 'chart.js'
- ])
- .config(function ($routeProvider) {
- $routeProvider
- .when('/', {
- templateUrl: 'views/main.html',
- controller: 'MainCtrl'
- })
- .when('/about', {
- templateUrl: 'views/about.html',
- controller: 'AboutCtrl'
- })
- .otherwise({
- redirectTo: '/'
- });
- });
|