triggering a click does not trigger a tap
commonpike opened this issue · 0 comments
commonpike commented
.. and triggering a tap does not trigger a click either
This is probably as intended. But it may be useful to add that to the description, because people may simply replace all 'click' handlers ( $(foo).on('click'...
) with 'tap' handlers, forgetting that somewhere in the application someone may be triggering the event by code ( $(foo).trigger('click'...
), which has to be replaced too, then, into $(foo).trigger('tap'...
)