Commit f5c8bc74d7408dcbe45ab2093f1a3831a1a3d028
1 parent
5dbbddc9
Exists in
master
and in
1 other branch
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 | 6 | .directive('noosferoMainBlock', noosferoMainBlock); |
| 7 | 7 | |
| 8 | 8 | /** @ngInject */ |
| 9 | - function noosferoMainBlock($log, $stateParams, noosfero) { | |
| 9 | + function noosferoMainBlock() { | |
| 10 | 10 | var directive = { |
| 11 | 11 | restrict: 'E', |
| 12 | 12 | templateUrl: 'app/components/noosfero-blocks/main-block/main-block.html', |
| ... | ... | @@ -23,7 +23,6 @@ |
| 23 | 23 | |
| 24 | 24 | /** @ngInject */ |
| 25 | 25 | function MainBlockController() { |
| 26 | - var vm = this; | |
| 27 | 26 | } |
| 28 | 27 | } |
| 29 | 28 | ... | ... |