(element, options)
| 197 | } |
| 198 | |
| 199 | function applyAnimationToStyles(element, options) { |
| 200 | if (options.to) { |
| 201 | element.css(options.to); |
| 202 | options.to = null; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | function mergeAnimationDetails(element, oldAnimation, newAnimation) { |
| 207 | var target = oldAnimation.options || {}; |
no outgoing calls
no test coverage detected