diff --git a/src/ng/animateCss.js b/src/ng/animateCss.js index 3da66f3d1def..4c08725d948e 100644 --- a/src/ng/animateCss.js +++ b/src/ng/animateCss.js @@ -35,10 +35,10 @@ var $CoreAnimateCssProvider = function() { return this.getPromise().then(f1,f2); }, 'catch': function(f1) { - return this.getPromise().catch(f1); + return this.getPromise()['catch'](f1); }, 'finally': function(f1) { - return this.getPromise().finally(f1); + return this.getPromise()['finally'](f1); } };