switch to stop propagation on checkbox/radio vmouse

This commit is contained in:
John Bender 2011-10-18 13:56:17 -07:00
parent 18767e5ac1
commit be59c77125

View file

@ -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();
}
},