File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -120,18 +120,11 @@ angular.module('topcoderX', [
120
120
} )
121
121
. state ( 'app.membersAdded' , {
122
122
url : '/members' ,
123
- templateUrl : 'app/members/members .html' ,
124
- controller : 'MemberConroller ' ,
123
+ templateUrl : 'app/members/member .html' ,
124
+ controller : 'MemberController ' ,
125
125
controllerAs : 'vm' ,
126
126
} ) ;
127
127
128
128
$urlRouterProvider . otherwise ( '/app/main' ) ;
129
129
$compileProvider . aHrefSanitizationWhitelist ( / ^ \s * ( h t t p s ? | f t p | m a i l t o | t e l | f i l e | b l o b ) : / ) ;
130
- // use the HTML5 History API
131
- // $locationProvider.html5Mode(true);
132
- // $locationProvider.html5Mode({
133
- // enabled: true,
134
- // requireBase: false,
135
- // hashPrefix:'!'
136
- // });
137
130
} ] ) ;
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
angular . module ( 'topcoderX' )
4
- . controller ( 'MainController ' , [ '$scope' , function ( $scope ) {
4
+ . controller ( 'MemberController ' , [ '$scope' , function ( $scope ) {
5
5
$scope . title = 'Members' ;
6
6
} ] ) ;
You can’t perform that action at this time.
0 commit comments