app.config.js 392 B

1234567891011121314
  1. app.config(['$routeProvider', '$locationProvider', function ($routeProvider, $locationProvider) {
  2. $locationProvider.hashPrefix('');
  3. $routeProvider
  4. .when('/', {
  5. templateUrl: 'app/views/home.template.html',
  6. controller: 'HomeController'
  7. })
  8. .when('/reg', {
  9. templateUrl: 'app/views/registration.template.html',
  10. controller: 'RegistrationController'
  11. })
  12. .otherwise('/');
  13. }]);