(el, rect)
| 504 | } |
| 505 | } |
| 506 | function setRect(el, rect) { |
| 507 | css(el, 'position', 'absolute'); |
| 508 | css(el, 'top', rect.top); |
| 509 | css(el, 'left', rect.left); |
| 510 | css(el, 'width', rect.width); |
| 511 | css(el, 'height', rect.height); |
| 512 | } |
| 513 | function unsetRect(el) { |
| 514 | css(el, 'position', ''); |
| 515 | css(el, 'top', ''); |
no test coverage detected
searching dependent graphs…