We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should be using ng-annotate via grunt-ng-annotate to avoid verbose function declarations when using dependency injection.
It turns this:
angular.module("MyMod").controller("MyCtrl", function($scope, $timeout) { });
into this
angular.module("MyMod").controller("MyCtrl", ["$scope", "$timeout", function($scope, $timeout) { }]);
automatically at build time so minificaiton is safe.
The text was updated successfully, but these errors were encountered:
66cae0b
Merge pull request #46 from waldenraines/ng-annotate
60f5812
Fixes #34: add ng-annotate to build process.
No branches or pull requests
We should be using ng-annotate via grunt-ng-annotate to avoid verbose function declarations when using dependency injection.
It turns this:
into this
automatically at build time so minificaiton is safe.
The text was updated successfully, but these errors were encountered: