diff --git a/app/js/controllers/example.js b/app/js/controllers/example.js index 4f799de6..d86bdc87 100644 --- a/app/js/controllers/example.js +++ b/app/js/controllers/example.js @@ -1,7 +1,6 @@ 'use strict'; function ExampleCtrl() { - 'ngInject'; // ViewModel const vm = this; diff --git a/app/js/directives/example.js b/app/js/directives/example.js index 2fed715b..29890caa 100644 --- a/app/js/directives/example.js +++ b/app/js/directives/example.js @@ -1,7 +1,6 @@ 'use strict'; function ExampleDirective() { - 'ngInject'; return { restrict: 'EA', diff --git a/app/js/filters/example.js b/app/js/filters/example.js index f84ab0d8..661bda4e 100644 --- a/app/js/filters/example.js +++ b/app/js/filters/example.js @@ -1,7 +1,6 @@ 'use strict'; function ExampleFilter() { - 'ngInject'; return function(input) { return input.replace(/keyboard/ig,'leopard');