(options)
| 171 | } |
| 172 | |
| 173 | function prepareAnimationOptions(options) { |
| 174 | options = options || {}; |
| 175 | if (!options.$$prepared) { |
| 176 | var domOperation = options.domOperation || noop; |
| 177 | options.domOperation = function() { |
| 178 | options.$$domOperationFired = true; |
| 179 | domOperation(); |
| 180 | domOperation = noop; |
| 181 | }; |
| 182 | options.$$prepared = true; |
| 183 | } |
| 184 | return options; |
| 185 | } |
| 186 | |
| 187 | function applyAnimationStyles(element, options) { |
| 188 | applyAnimationFromStyles(element, options); |
no outgoing calls
no test coverage detected