Closed GoogleCodeExporter closed 9 years ago
https://code.google.com/p/blockly/source/browse/trunk/core/utils.js#105
Original comment by escala...@gmail.com
on 11 Nov 2013 at 1:22
I found that binding the "touchend" event to the event handler solves the
problem.
In jquery:
function myHandler() {
alert("click!");
}
$("#my_button").on('click', myHandler).on('touchend', myHandler);
Original comment by roberto....@gmail.com
on 27 Feb 2014 at 8:23
Fixed in r1670.
Original comment by neil.fra...@gmail.com
on 28 Mar 2014 at 7:18
Original issue reported on code.google.com by
escala...@gmail.com
on 11 Nov 2013 at 12:03