(element, options)
| 166 | } |
| 167 | |
| 168 | function applyAnimationToStyles(element, options) { |
| 169 | if (options.to) { |
| 170 | element.css(options.to); |
| 171 | options.to = null; |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | function mergeAnimationOptions(element, target, newOptions) { |
| 176 | var toAdd = (target.addClass || '') + ' ' + (newOptions.addClass || ''); |
no outgoing calls
no test coverage detected