(el, rect)
| 526 | |
| 527 | |
| 528 | function setRect(el, rect) { |
| 529 | css(el, 'position', 'absolute'); |
| 530 | css(el, 'top', rect.top); |
| 531 | css(el, 'left', rect.left); |
| 532 | css(el, 'width', rect.width); |
| 533 | css(el, 'height', rect.height); |
| 534 | } |
| 535 | |
| 536 | function unsetRect(el) { |
| 537 | css(el, 'position', ''); |
nothing calls this directly
no test coverage detected
searching dependent graphs…