(element, options)
| 217 | } |
| 218 | |
| 219 | function applyAnimationToStyles(element, options) { |
| 220 | if (options.to) { |
| 221 | element.css(options.to); |
| 222 | options.to = null; |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | function mergeAnimationDetails(element, oldAnimation, newAnimation) { |
| 227 | var target = oldAnimation.options || {}; |
no outgoing calls
no test coverage detected