bunkat / wordfind

A small javascript library for generating and solving word find (also known as word search) puzzles.
MIT License
194 stars 110 forks source link

Issue in Touch events #15

Open B4ljeets1ngh opened 3 years ago

B4ljeets1ngh commented 3 years ago

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.