mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-22 21:25:48 +00:00
switch to stop propagation on checkbox/radio vmouse
This commit is contained in:
parent
18767e5ac1
commit
be59c77125
1 changed files with 2 additions and 2 deletions
|
|
@ -58,9 +58,9 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, {
|
|||
.wrapAll( "<div class='ui-" + inputtype + "'></div>" );
|
||||
|
||||
label.bind({
|
||||
vmouseover: function() {
|
||||
vmouseover: function( event ) {
|
||||
if ( $( this ).parent().is( ".ui-disabled" ) ) {
|
||||
return false;
|
||||
event.stopPropagation();
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue