I'm using "angular-animate": "^1.5.0"
with "angular": "1.5.0"
and "angular-bootstrap": "^1.2.4"
.
I've implemented my app.js as:
var app = angular.module('app', [
'ui.router',
'ui.bootstrap',
'ngAnimate',
'facebook',
'ngMap',
'ngCookies',
'angular-loading-bar',
'ui-notification',
'ngFileUpload',
'btford.socket-io',
'templates'
]);
This however gives me the following error:
Uncaught Error: [$injector:unpr] Unknown provider: $$AnimateRunnerProvider <- $$AnimateRunner <- $animateCss <- $uibModalStack <- $animateCss
When I comment out ngAnimate
from the dependencies, my ui-bootstrap
carousel and related elements work but without the slide transitions but when I add the ngAnimate
dependency, it breaks completely. How should I fix this?