blob: c82185c0775d10085d402716ee826f850b734ac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
appDS2.config(function($routeProvider) {
$routeProvider
.when('/profile/:profileId', {
templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-profile/self_profile.html',
controller: 'selfProfileController'
})
.when('/self_profile', {
templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-profile/self_profile.html',
controller: 'selfProfileController'
})
.when('/post_search', {
templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-profile/post.html',
controller: 'postController'
})
.otherwise({
templateUrl: 'app/fusion/scripts/DS2-view-models/ds2-profile/profile_searchDS2.html',
controller : "profileSearchCtrlDS2"
});
});
|