Commit aa0ad281c016cf44748835926441cde9e47b8a6c
1 parent
7718616d
Exists in
master
and in
38 other branches
Fix warnings
Showing
3 changed files
with
5 additions
and
5 deletions
Show diff stats
src/app/components/noosfero-activities/activities.directive.js
... | ... | @@ -6,11 +6,11 @@ |
6 | 6 | .directive('noosferoActivities', noosferoActivities); |
7 | 7 | |
8 | 8 | /** @ngInject */ |
9 | - function noosferoActivities($compile) { | |
9 | + function noosferoActivities() { | |
10 | 10 | var directive = { |
11 | 11 | restrict: 'E', |
12 | 12 | scope: { |
13 | - activities: '=', | |
13 | + activities: '=' | |
14 | 14 | }, |
15 | 15 | templateUrl: 'app/components/noosfero-activities/activities.html' |
16 | 16 | }; | ... | ... |
src/app/components/noosfero-activities/activity/activity.directive.js
... | ... | @@ -6,11 +6,11 @@ |
6 | 6 | .directive('noosferoActivity', noosferoActivity); |
7 | 7 | |
8 | 8 | /** @ngInject */ |
9 | - function noosferoActivity($compile) { | |
9 | + function noosferoActivity() { | |
10 | 10 | var directive = { |
11 | 11 | restrict: 'E', |
12 | 12 | scope: { |
13 | - activity: '=', | |
13 | + activity: '=' | |
14 | 14 | }, |
15 | 15 | templateUrl: 'app/components/noosfero-activities/activity/activity.html', |
16 | 16 | replace: true, | ... | ... |
src/app/profile-info/profile-info.controller.js