(a, b)
| 1327 | } |
| 1328 | |
| 1329 | function getUniqueValues(a, b) { |
| 1330 | if (isString(a)) a = a.split(' '); |
| 1331 | if (isString(b)) b = b.split(' '); |
| 1332 | return a.filter(function(val) { |
| 1333 | return b.indexOf(val) === -1; |
| 1334 | }).join(' '); |
| 1335 | } |
| 1336 | |
| 1337 | function prepareAnchoredAnimation(classes, outAnchor, inAnchor) { |
| 1338 | var clone = jqLite(getDomNode(outAnchor).cloneNode(true)); |
no test coverage detected