After I have changed from ngRoute to angular-ui-router the console shows always 4 errors stating: Possibly unhandled rejection: {}
I did not noticed
I used the next solution
$http.get('/api/get').then(function(result) { // ... stuff here }).catch(angular.noop);
it's equals to
$http.get('/api/get').then(function(result) { // ... stuff here }).catch(function(){});