Issue in Touch events
B4ljeets1ngh opened this issue · 0 comments
B4ljeets1ngh commented
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)
TO select(document.elementFromPoint(xPos, yPos));
Because variable targetElement is giving null.