UNPKG

@popperjs/core

Version:

Tooltip and Popover Positioning Engine

10 lines 312 B
// Returns the layout rect of an element relative to its offsetParent. Layout // means it doesn't take into account transforms. export default function getLayoutRect(element) { return { x: element.offsetLeft, y: element.offsetTop, width: element.offsetWidth, height: element.offsetHeight }; }