You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue cause by function Selection.js::getBoundsForNode line top = rect.top + (document.body.scrollTop || 0) does not correct because document.body.scrollLeft return 0
The issue may be fixed by changing to:
top = rect.top + (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0);
The issue cause by function Selection.js::getBoundsForNode line top = rect.top + (document.body.scrollTop || 0) does not correct because document.body.scrollLeft return 0
The issue may be fixed by changing to:
top = rect.top + (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0);
see http://stackoverflow.com/questions/3464876/javascript-get-window-x-y-position-for-scroll
The text was updated successfully, but these errors were encountered: