| 1234567891011121314151617 |
- var app = angular.module('app', ['ngRoute', 'ngSanitize', 'ngResource', 'ui.bootstrap']);
- app.config(['$routeProvider', '$locationProvider', function ($routeProvider, $locationProvider) {
- $locationProvider.html5Mode(true);
- $routeProvider
- .when('/', {
- templateUrl: 'modules/main/main.html',
- controller: 'mainCtrl'
- })
- .when('/artists', {
- templateUrl: 'modules/artists/artists.html',
- controller: 'artistListCtrl'
- })
- .otherwise({
- redirectTo: '/'
- });
- }]);
|