Mercurial > hg > webaudioevaluationtool
diff interfaces/ape.js @ 3074:5c9cb8147a51
#122 Incorrect touchend behaviour for tap
author | Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk> |
---|---|
date | Tue, 31 Oct 2017 22:23:17 +0000 |
parents | 87b3657abce7 |
children | 0fc927572aab |
line wrap: on
line diff
--- a/interfaces/ape.js Tue Oct 31 22:21:20 2017 +0000 +++ b/interfaces/ape.js Tue Oct 31 22:23:17 2017 +0000 @@ -603,7 +603,7 @@ } } else if (event.type == "touchend" || event.type == "touchcancel") { if (UI.selected == getTargetSlider(event.target)) { - UI.selected.handleEvent(event); + this.mouseup(UI.selected); } } }