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
file: wordfindgame.js
function: touchMove, line107
problem: the touch events do not register on the grid
fix: change var targetElement = document.elementFromPoint(xPos, yPos); select(targetElement)TOselect(document.elementFromPoint(xPos, yPos)); Because variable targetElement is giving null.
The text was updated successfully, but these errors were encountered:
file: wordfindgame.js
function: touchMove, line107
problem: the touch events do not register on the grid
fix: change
var targetElement = document.elementFromPoint(xPos, yPos); select(targetElement)
TOselect(document.elementFromPoint(xPos, yPos));
Because variable targetElement is giving null.The text was updated successfully, but these errors were encountered: