jsketcher/modules/ui/positionUtils.js
2022-08-15 23:47:20 -07:00

7 lines
120 B
JavaScript

export function aboveElement(el) {
const r = el.getBoundingClientRect();
return {
x: r.left,
y: r.top
}
}