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