Commit f5c8bc74d7408dcbe45ab2093f1a3831a1a3d028
1 parent
5dbbddc9
Exists in
master
and in
38 other branches
Remove unused params
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
src/app/components/noosfero-blocks/main-block/main-block.directive.js
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | .directive('noosferoMainBlock', noosferoMainBlock); | 6 | .directive('noosferoMainBlock', noosferoMainBlock); |
7 | 7 | ||
8 | /** @ngInject */ | 8 | /** @ngInject */ |
9 | - function noosferoMainBlock($log, $stateParams, noosfero) { | 9 | + function noosferoMainBlock() { |
10 | var directive = { | 10 | var directive = { |
11 | restrict: 'E', | 11 | restrict: 'E', |
12 | templateUrl: 'app/components/noosfero-blocks/main-block/main-block.html', | 12 | templateUrl: 'app/components/noosfero-blocks/main-block/main-block.html', |
@@ -23,7 +23,6 @@ | @@ -23,7 +23,6 @@ | ||
23 | 23 | ||
24 | /** @ngInject */ | 24 | /** @ngInject */ |
25 | function MainBlockController() { | 25 | function MainBlockController() { |
26 | - var vm = this; | ||
27 | } | 26 | } |
28 | } | 27 | } |
29 | 28 |