Skip to content

Commit 4dc2560

Browse files
Martin Koujblas
authored andcommitted
Fixed yet another duplicate tap event bug.
1 parent 141127b commit 4dc2560

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/jquery.mobile.event.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ $.event.special.tap = {
8181
function clearTapHandlers() {
8282
touching = false;
8383
clearTimeout(timer);
84-
$(this).unbind("vclick", clickHandler).unbind("vmousecancel", clearTapHandlers);
84+
$this.unbind("vclick", clickHandler).unbind("vmousecancel", clearTapHandlers);
8585
}
8686

8787
function clickHandler(event) {

0 commit comments

Comments
 (0)