Commit b4c9d4063935cc0f9eeed960f041d76ae88e03ff
1 parent
58acca9a
Exists in
master
and in
38 other branches
Clean unused parameters
Showing
3 changed files
with
3 additions
and
3 deletions
Show diff stats
src/app/content-viewer/content-viewer-actions.controller.js
@@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
7 | 7 | ||
8 | 8 | ||
9 | /** @ngInject */ | 9 | /** @ngInject */ |
10 | - function ContentViewerActionsController(noosfero, $log, $stateParams, $scope, $state) { | 10 | + function ContentViewerActionsController(noosfero) { |
11 | var vm = this; | 11 | var vm = this; |
12 | vm.article = null; | 12 | vm.article = null; |
13 | vm.profile = null; | 13 | vm.profile = null; |
src/app/content-viewer/content-viewer.controller.js
@@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
7 | 7 | ||
8 | 8 | ||
9 | /** @ngInject */ | 9 | /** @ngInject */ |
10 | - function ContentViewerController(noosfero, $log, $stateParams, $scope) { | 10 | + function ContentViewerController(noosfero, $log, $stateParams) { |
11 | var vm = this; | 11 | var vm = this; |
12 | vm.article = null; | 12 | vm.article = null; |
13 | vm.profile = null; | 13 | vm.profile = null; |
src/app/profile-info/profile-info.controller.js
@@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
7 | 7 | ||
8 | 8 | ||
9 | /** @ngInject */ | 9 | /** @ngInject */ |
10 | - function ProfileInfoController(noosfero, $log, $stateParams, $scope) { | 10 | + function ProfileInfoController(noosfero) { |
11 | var vm = this; | 11 | var vm = this; |
12 | vm.profile = null; | 12 | vm.profile = null; |
13 | vm.activities = []; | 13 | vm.activities = []; |