(options)
| 140 | } |
| 141 | |
| 142 | function prepareAnimationOptions(options) { |
| 143 | options = options || {}; |
| 144 | if (!options.$$prepared) { |
| 145 | var domOperation = options.domOperation || noop; |
| 146 | options.domOperation = function() { |
| 147 | options.$$domOperationFired = true; |
| 148 | domOperation(); |
| 149 | domOperation = noop; |
| 150 | }; |
| 151 | options.$$prepared = true; |
| 152 | } |
| 153 | return options; |
| 154 | } |
| 155 | |
| 156 | function applyAnimationStyles(element, options) { |
| 157 | applyAnimationFromStyles(element, options); |
no outgoing calls
no test coverage detected