(options)
| 191 | } |
| 192 | |
| 193 | function prepareAnimationOptions(options) { |
| 194 | options = options || {}; |
| 195 | if (!options.$$prepared) { |
| 196 | var domOperation = options.domOperation || noop; |
| 197 | options.domOperation = function() { |
| 198 | options.$$domOperationFired = true; |
| 199 | domOperation(); |
| 200 | domOperation = noop; |
| 201 | }; |
| 202 | options.$$prepared = true; |
| 203 | } |
| 204 | return options; |
| 205 | } |
| 206 | |
| 207 | function applyAnimationStyles(element, options) { |
| 208 | applyAnimationFromStyles(element, options); |
no outgoing calls
no test coverage detected