(a, b)
| 1567 | } |
| 1568 | |
| 1569 | function getUniqueValues(a, b) { |
| 1570 | if (isString(a)) a = a.split(' '); |
| 1571 | if (isString(b)) b = b.split(' '); |
| 1572 | return a.filter(function(val) { |
| 1573 | return b.indexOf(val) === -1; |
| 1574 | }).join(' '); |
| 1575 | } |
| 1576 | |
| 1577 | function prepareAnchoredAnimation(classes, outAnchor, inAnchor) { |
| 1578 | var clone = jqLite(getDomNode(outAnchor).cloneNode(true)); |
no test coverage detected