(a, b)
| 1545 | } |
| 1546 | |
| 1547 | function getUniqueValues(a, b) { |
| 1548 | if (isString(a)) a = a.split(' '); |
| 1549 | if (isString(b)) b = b.split(' '); |
| 1550 | return a.filter(function(val) { |
| 1551 | return b.indexOf(val) === -1; |
| 1552 | }).join(' '); |
| 1553 | } |
| 1554 | |
| 1555 | function prepareAnchoredAnimation(classes, outAnchor, inAnchor) { |
| 1556 | var clone = jqLite(getDomNode(outAnchor).cloneNode(true)); |
no test coverage detected