(el, rect)
| 510 | } |
| 511 | } |
| 512 | function setRect(el, rect) { |
| 513 | css(el, 'position', 'absolute'); |
| 514 | css(el, 'top', rect.top); |
| 515 | css(el, 'left', rect.left); |
| 516 | css(el, 'width', rect.width); |
| 517 | css(el, 'height', rect.height); |
| 518 | } |
| 519 | function unsetRect(el) { |
| 520 | css(el, 'position', ''); |
| 521 | css(el, 'top', ''); |
no test coverage detected
searching dependent graphs…