AutosuggestPlugin: pageYOffset --> scrollY

environments/review-lexical-ujdd17/deployments/4015
Alex Gleason 1 year ago
parent b14a6586b4
commit 8f49446a15
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -213,8 +213,8 @@ const useMenuAnchorRef = (
if (rootElement !== null && resolution !== null) { if (rootElement !== null && resolution !== null) {
const { left, top, width, height } = resolution.getRect(); const { left, top, width, height } = resolution.getRect();
containerDiv.style.top = `${top + window.pageYOffset}px`; containerDiv.style.top = `${top + window.scrollY}px`;
containerDiv.style.left = `${left + window.pageXOffset}px`; containerDiv.style.left = `${left + window.scrollX}px`;
containerDiv.style.height = `${height}px`; containerDiv.style.height = `${height}px`;
containerDiv.style.width = `${width}px`; containerDiv.style.width = `${width}px`;

Loading…
Cancel
Save