'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: '/' }); });