Salve, che vuol dire questo messaggio in google crhome:


Performing operations that require explicit user interaction on touchstart events is deprecated and will be removed in M54, around October 2016. See https://www.chromestatus.com/features/5649871251963904 for more details.


il mio codice è questo:
codice:
game.addEventListener('touchmove', function(ev)
            {
                if (!ev)
                ev = event;
                posy = ev.touches[0].pageY;
                return false;
            }, false);

E un gioco che avevo fatto mesi fa e ora con le ultime versioni dei browser non funziona più il touch move.


avete idea come fare ?