(a, b)
| 1578 | } |
| 1579 | |
| 1580 | function getUniqueValues(a, b) { |
| 1581 | if (isString(a)) a = a.split(' '); |
| 1582 | if (isString(b)) b = b.split(' '); |
| 1583 | return a.filter(function(val) { |
| 1584 | return b.indexOf(val) === -1; |
| 1585 | }).join(' '); |
| 1586 | } |
| 1587 | |
| 1588 | function prepareAnchoredAnimation(classes, outAnchor, inAnchor) { |
| 1589 | var clone = jqLite(getDomNode(outAnchor).cloneNode(true)); |
no test coverage detected