mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
Fixes #2212 - Collapsible heading vclick issue
- Switch to using "click" instead of "vclick" on collapsible headers since that is the only reliable way to prevent uncaught/mismatched clicks from firing on a different element.
This commit is contained in:
parent
f6b2a9c700
commit
bb8326876b
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
|
|||
.trigger( o.collapsed ? "collapse" : "expand" );
|
||||
|
||||
collapsibleHeading
|
||||
.bind( "vclick", function( event ) {
|
||||
.bind( "click", function( event ) {
|
||||
|
||||
var type = collapsibleHeading.is( ".ui-collapsible-heading-collapsed" ) ?
|
||||
"expand" : "collapse";
|
||||
|
|
|
|||
Loading…
Reference in a new issue