AngularJS : minification issue in directive
问题 I have yet another issue with minification. This time it's because of the $scope service passed to the directive's controller. See below code: angular.module('person.directives'). directive("person", ['$dialog', function($dialog) { return { restrict: "E", templateUrl: "person/views/person.html", replace: true, scope: { myPerson: '=' }, controller: function ($scope) { $scope.test = 3; } } }]); If I comment out the controller part, then it works fine. As you can see, I've used the array