Event.js icon indicating copy to clipboard operation
Event.js copied to clipboard

eventsjs dbltap event fires on single tap

Open dhara-02 opened this issue 10 years ago • 1 comments

The event should get fired only when there is double click or double tap. But when we do single tap the event is getting fired. Tested on chrome browser both in mobile and touch supported desktop. This happens when we do touch , mouse functionality is working ok.

$(function() { eventjs.add(someElement, "dbltap" , doubleTapEvent , false); });

function doubleTapEvent(event, self){ console.log("doubleTappped"); //This gets logged in single tap also }

dhara-02 avatar Jul 21 '15 03:07 dhara-02

Thats happening in my code too

mardon86 avatar Dec 01 '15 18:12 mardon86