mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 08:53:25 +01:00
9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
export const menuAboveElementHint = el => {
|
|
const {top, left, bottom} = el.getBoundingClientRect();
|
|
return ({
|
|
orientationUp: true,
|
|
flatBottom: true,
|
|
x: left,
|
|
y: document.documentElement.clientHeight - top
|
|
});
|
|
};
|