mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 08:25:19 +01:00
7 lines
120 B
JavaScript
7 lines
120 B
JavaScript
export function aboveElement(el) {
|
|
const r = el.getBoundingClientRect();
|
|
return {
|
|
x: r.left,
|
|
y: r.top
|
|
}
|
|
}
|