mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-02 22:00:24 +00:00
Fixed yet another duplicate tap event bug.
This commit is contained in:
parent
141127b903
commit
4dc2560895
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ $.event.special.tap = {
|
|||
function clearTapHandlers() {
|
||||
touching = false;
|
||||
clearTimeout(timer);
|
||||
$(this).unbind("vclick", clickHandler).unbind("vmousecancel", clearTapHandlers);
|
||||
$this.unbind("vclick", clickHandler).unbind("vmousecancel", clearTapHandlers);
|
||||
}
|
||||
|
||||
function clickHandler(event) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue