app.js 706 B

123456789101112131415161718192021222324252627282930313233
  1. 'use strict';
  2. /**
  3. * @ngdoc overview
  4. * @name kasseApp
  5. * @description
  6. * # kasseApp
  7. *
  8. * Main module of the application.
  9. */
  10. angular
  11. .module('kasseApp', [
  12. 'ngAnimate',
  13. 'ngCookies',
  14. 'ngResource',
  15. 'ngRoute',
  16. 'ngSanitize',
  17. 'ngTouch'
  18. ])
  19. .config(function ($routeProvider) {
  20. $routeProvider
  21. .when('/', {
  22. templateUrl: 'views/main.html',
  23. controller: 'MainCtrl'
  24. })
  25. .when('/overview', {
  26. templateUrl: 'views/overview.html',
  27. controller: 'OverviewCtrl'
  28. })
  29. .otherwise({
  30. redirectTo: '/'
  31. });
  32. });