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
I have little to no knowledge of JavaScript, but I found it frustrating that the window scroll position would not be taken into account in the coordinates calculation.
I fixed it by going into the bundle.js file and editing the addEventListener function with the "mousemove" argument so as to add variables corresponding to
window.pageXOffset
window.pageYOffset
Adding (not substracting) these values to the coordinate calculation did the trick for me.
The text was updated successfully, but these errors were encountered:
I have little to no knowledge of JavaScript, but I found it frustrating that the window scroll position would not be taken into account in the coordinates calculation.
I fixed it by going into the bundle.js file and editing the addEventListener function with the "mousemove" argument so as to add variables corresponding to
window.pageXOffset
window.pageYOffset
Adding (not substracting) these values to the coordinate calculation did the trick for me.
The text was updated successfully, but these errors were encountered: