(backup, node, properties)
| 851 | // is to be removed at the end of the animation). If we had a simple |
| 852 | // "OR" statement then it would not be enough to catch that. |
| 853 | function registerRestorableStyles(backup, node, properties) { |
| 854 | forEach(properties, function(prop) { |
| 855 | backup[prop] = isDefined(backup[prop]) |
| 856 | ? backup[prop] |
| 857 | : node.style.getPropertyValue(prop); |
| 858 | }); |
| 859 | } |
| 860 | |
| 861 | var $AnimateCssProvider = ['$animateProvider', /** @this */ function($animateProvider) { |
| 862 | var gcsLookup = createLocalCacheLookup(); |
no test coverage detected