angular-areas
angular-areas copied to clipboard
Problem in minification
Error after minification.
Just change the controller : function($scope, $element, $attrs) {
for controller : ['$scope', '$element', '$attrs', function($scope, $element, $attrs) {
and in line 903 change to: }],
Hi, thanks for the comments. Is this an error? and the solution? can you provide more details?
Hi!
This is a error. After the minification provided my maven process, an error occurs.
To solve that just change the code in angular-areas.js (line 9)
controller : function($scope, $element, $attrs) {
for
controller : ['$scope', '$element', '$attrs', function($scope, $element, $attrs) {
and in line 903 change to:
}],
OK, thank you, I will test this and make the changes.