-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
33 lines (28 loc) · 741 Bytes
/
App.js
File metadata and controls
33 lines (28 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(function() {
function config($stateProvider, $locationProvider) {
$locationProvider
.html5Mode({
enabled: true,
requireBase: false
});
}
$stateProvider
.state('landing', {
url: '/',
templateUrl: '/templates/landing.html'
})
.state('album', {
url: '/album',
templateUrl: '/templates/album.html'
})
.state('collection', {
url: '/collection'
templateUrl: '/templates/collection.html'
});
...
}
angular.module('blocJams', ['ui.router']);
angular
.module('blocJams', ['ui.router'])
.config(config);
})();