mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Fix for issue 1925 - Single tap triggers two actions, especially in android B1
- Trigger the list item and keyboard return/space key up to the "click" event instead of "vclick". This delays the dismissal of the custom select menu until the click event, thereby avoiding the case where the menu disappears before the browser dispatches it's synthesized mouse events (in the touch case) with a target of whatever element was underneath the menu.
This commit is contained in:
parent
df8d6fa8d5
commit
6759afff66
1 changed files with 2 additions and 2 deletions
|
|
@ -103,7 +103,7 @@
|
|||
.delegate( ".ui-li>a", "focusout", function() {
|
||||
$( this ).attr( "tabindex", "-1" );
|
||||
})
|
||||
.delegate( "li:not(.ui-disabled, .ui-li-divider)", "vclick", function( event ) {
|
||||
.delegate( "li:not(.ui-disabled, .ui-li-divider)", "click", function( event ) {
|
||||
|
||||
// index of option tag to be selected
|
||||
var oldIndex = self.select[ 0 ].selectedIndex,
|
||||
|
|
@ -174,7 +174,7 @@
|
|||
// If enter or space is pressed, trigger click
|
||||
case 13:
|
||||
case 32:
|
||||
target.trigger( "vclick" );
|
||||
target.trigger( "click" );
|
||||
|
||||
return false;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue