(el)
| 517 | css(el, 'height', rect.height); |
| 518 | } |
| 519 | function unsetRect(el) { |
| 520 | css(el, 'position', ''); |
| 521 | css(el, 'top', ''); |
| 522 | css(el, 'left', ''); |
| 523 | css(el, 'width', ''); |
| 524 | css(el, 'height', ''); |
| 525 | } |
| 526 | function getChildContainingRectFromElement(container, options, ghostEl) { |
| 527 | var rect = {}; |
| 528 | Array.from(container.children).forEach(function (child) { |
no test coverage detected
searching dependent graphs…