Wow of that.
This controller / service is probably defined as
app.controller('myCtrl', function($scope){
...
})
instead of safer
app.controller('myCtrl', ['$scope', function($scope){
...
}])
I don’t have a stupid answer, but maybe you can look for a 'function (and if you are lucky you will find the culprit. If something like this does not work, the source cards will probably go.
source
share