(backup, node, properties)
| 826 | // is to be removed at the end of the animation). If we had a simple |
| 827 | // "OR" statement then it would not be enough to catch that. |
| 828 | function registerRestorableStyles(backup, node, properties) { |
| 829 | forEach(properties, function(prop) { |
| 830 | backup[prop] = isDefined(backup[prop]) |
| 831 | ? backup[prop] |
| 832 | : node.style.getPropertyValue(prop); |
| 833 | }); |
| 834 | } |
| 835 | |
| 836 | var $AnimateCssProvider = ['$animateProvider', /** @this */ function($animateProvider) { |
| 837 |
no test coverage detected