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
It looks like the pattern for supporting minification is generally to use the expanded signature for modules. e.g.
//Controllers
var myController = function(anyVariableName, $http) {}
myController.$inject = ['$scope', '$http']
//Modules
var myModule = angular.module('myModule', [ //Dependencies go here as an array of strings.])
In develop branch, minified JS does not work with testing framework without a workaround. Add a workaround and switch the app back to minified.
The text was updated successfully, but these errors were encountered: