You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running ngmin on files that include both controller('MyCtrl1', function ($scope, $http) { ... }); and controller('MyCtrl2', ['$scope', '$http', function ($scope, $http) { ... }]); definitions. Ngmin fails to properly pre-minify MyCtrl1 in this case.
The text was updated successfully, but these errors were encountered:
olov
added a commit
to olov/ng-annotate
that referenced
this issue
May 13, 2014
I am running ngmin on files that include both
controller('MyCtrl1', function ($scope, $http) { ... });
andcontroller('MyCtrl2', ['$scope', '$http', function ($scope, $http) { ... }]);
definitions. Ngmin fails to properly pre-minifyMyCtrl1
in this case.The text was updated successfully, but these errors were encountered: