mirror of
https://github.com/xibyte/jsketcher
synced 2026-04-01 19:14:20 +02: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
|
|
}
|
|
}
|