'use strict'; /** * @ngdoc overview * @name fehlerberichtApp * @description * # fehlerberichtApp * * Main module of the application. */ angular .module('fehlerberichtApp', [ 'ngAnimate', 'ngCookies', 'ngResource', 'ngRoute', 'ngSanitize', 'ngTouch' ]) .config(function ($routeProvider) { $routeProvider .when('/', { templateUrl: 'views/overview.html', controller: 'OverviewCtrl' }) .otherwise({ redirectTo: '/' }); });