(backup, node, properties)
| 870 | // is to be removed at the end of the animation). If we had a simple |
| 871 | // "OR" statement then it would not be enough to catch that. |
| 872 | function registerRestorableStyles(backup, node, properties) { |
| 873 | forEach(properties, function(prop) { |
| 874 | backup[prop] = isDefined(backup[prop]) |
| 875 | ? backup[prop] |
| 876 | : node.style.getPropertyValue(prop); |
| 877 | }); |
| 878 | } |
| 879 | |
| 880 | var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { |
| 881 | var gcsLookup = createLocalCacheLookup(); |
no test coverage detected