Issue #1524 - Taphold event fired while scrolling on Blackberry Playbook

Cause: The vmousecancel event was not being fired for 'this'.

How Fixed: Bound vmousecancel event to document instead of 'this'.

How Tested: Ran the example provided with the issue
(http://jsbin.com/oruhu4/) with this change on BlackBerry Playbook v2.0
and iPad iOS 5.0.1
This commit is contained in:
Jason 2012-01-23 15:33:59 -05:00
parent 7f2e50430e
commit 92cf8d62c4

View file

@ -92,8 +92,8 @@ $.event.special.tap = {
clearTapTimer();
$this.unbind( "vclick", clickHandler )
.unbind( "vmouseup", clearTapTimer )
.unbind( "vmousecancel", clearTapHandlers );
.unbind( "vmouseup", clearTapTimer );
$(document).unbind("vmousecancel", clearTapHandlers);
}
function clickHandler(event) {
@ -106,9 +106,9 @@ $.event.special.tap = {
}
}
$this.bind( "vmousecancel", clearTapHandlers )
.bind( "vmouseup", clearTapTimer )
$this.bind( "vmouseup", clearTapTimer )
.bind( "vclick", clickHandler );
$(document).bind("vmousecancel", clearTapHandlers);
timer = setTimeout(function() {
triggerCustomEvent( thisObject, "taphold", $.Event( "taphold" ) );