I have successfully configured my angularjs environment with approximately version 1.2 libraries of Angular.
- angular v1.2.0rc1
- angular-animate v1.2.0-rc.2
- angular-route v1.2.0-rc.2
Configuration:
angular.module('App', ['ngRoute', 'ngLocale', 'ngAnimate'])
However, I encountered an error when trying to integrate ngAnimate into my app module.
TypeError: Object #<Object> has no method '$$postDigest'
at Object.angular.module.config.$provide.decorator.enter
angular-animate/angular-animate.js:292:22
The mentioned error is related to $rootScope as the Object #.
Any advice or suggestions are appreciated.