We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc48aad commit 1cc9c9cCopy full SHA for 1cc9c9c
src/ng/animateCss.js
@@ -35,10 +35,10 @@ var $CoreAnimateCssProvider = function() {
35
return this.getPromise().then(f1,f2);
36
},
37
'catch': function(f1) {
38
- return this.getPromise().catch(f1);
+ return this.getPromise()['catch'](f1);
39
40
'finally': function(f1) {
41
- return this.getPromise().finally(f1);
+ return this.getPromise()['finally'](f1);
42
}
43
};
44
0 commit comments