Mateus Cerqueira Gonçalves

Results 5 comments of Mateus Cerqueira Gonçalves

There is a workaround that did the trick for me, i imagine it could help someone... ``` /** Workaround to make angular-input-mask work with requirejs */ var _require = require;...

The build failed in these two lines of the utestProvider.js file: line 73: expect(elem.css("opacity")).toBe("0"); line 77: expect(elem.css("opacity")).toBe("1"); But i don't understand exactly why... If you could give me a light,...

bower.json is resolving "angular": "^1.3.0", Since this is a separate bug i just commented out these two lines of tests for the build to pass, so if you want you...

Actually no, this question in SO is not the reason for the change. Yes, the code will resolve only the first controller in the array. I'll try to explain better....

In the project we have here we use it like this: $routeProvider.when('/myModule/mySubmodule/myFeature2', angularAMD.route({ templateUrl: factory.getFileVersion('app/myModule/features/mySubmodule/myFeature2/myFeature2.html), controllerUrl: [factory.getFileVersion('app/myModule/features/mySubmodule/myFeature2/myFeature2-ctrl.js'), factory.getFileVersion('app/myModule/features/mySubmodule/myFeature2/myFeature2-filter.js'), factory.getFileVersion('app/myModule/features/mySubmodule/myFeature2/myFeature2-directive.js')] })); In the controllerUrl we pass the array of files that...