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