We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ngmin does not work if i write controller in following way:
var myMod = angular.module('myMod', ['aaa','bbb']); myMod.controller('myCtrl', function ($scope) { // ... });
But If I write it like this
angular.module('myMod', ['aaa','bbb']); angular.module('myMod').controller('myCtrl', function ($scope) { // ... });
then it works
The text was updated successfully, but these errors were encountered:
I suppose, it's correct because of global variables.
Sorry, something went wrong.
ngmin issues that just works in ng-annotate: btford/ngmin#91, btford/…
7dbcc7c
…ngmin#89, btford/ngmin#87, btford/ngmin#85, btford/ngmin#78, btford/ngmin#77, btford/ngmin#73, btford/ngmin#70, btford/ngmin#64, btford/ngmin#63, btford/ngmin#61, btford/ngmin#59, btford/ngmin#57, btford/ngmin#56, btford/ngmin#54, btford/ngmin#50, btford/ngmin#46, btford/ngmin#43, btford/ngmin#42, btford/ngmin#37, btford/ngmin#35, btford/ngmin#22
Please try https://github.com/olov/ng-annotate. ngmin is now deprecated: #93
If your issue isn't resolved there please open an issue at https://github.com/olov/ng-annotate/issues
If you really want ngmin to fix this issue, feel free to fork it and use that.
No branches or pull requests
ngmin does not work if i write controller in following way:
But If I write it like this
then it works
The text was updated successfully, but these errors were encountered: