(el)
| 511 | css(el, 'height', rect.height); |
| 512 | } |
| 513 | function unsetRect(el) { |
| 514 | css(el, 'position', ''); |
| 515 | css(el, 'top', ''); |
| 516 | css(el, 'left', ''); |
| 517 | css(el, 'width', ''); |
| 518 | css(el, 'height', ''); |
| 519 | } |
| 520 | function getChildContainingRectFromElement(container, options, ghostEl) { |
| 521 | var rect = {}; |
| 522 | Array.from(container.children).forEach(function (child) { |
no test coverage detected
searching dependent graphs…