(ctx, tagName, iterator)
| 215 | return matrixFn && new matrixFn(appliedTransforms); |
| 216 | } |
| 217 | function find(ctx, tagName, iterator) { |
| 218 | if (ctx) { |
| 219 | var list = ctx.getElementsByTagName(tagName), |
| 220 | i = 0, |
| 221 | n = list.length; |
| 222 | if (iterator) { |
| 223 | for (; i < n; i++) { |
| 224 | iterator(list[i], i); |
| 225 | } |
| 226 | } |
| 227 | return list; |
| 228 | } |
| 229 | return []; |
| 230 | } |
| 231 | function getWindowScrollingElement() { |
| 232 | var scrollingElement = document.scrollingElement; |
| 233 | if (scrollingElement) { |
no outgoing calls
no test coverage detected
searching dependent graphs…