From be59c771251f605b578e6aec5b74be815417491a Mon Sep 17 00:00:00 2001 From: John Bender Date: Tue, 18 Oct 2011 13:56:17 -0700 Subject: [PATCH] switch to stop propagation on checkbox/radio vmouse --- js/jquery.mobile.forms.checkboxradio.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/jquery.mobile.forms.checkboxradio.js b/js/jquery.mobile.forms.checkboxradio.js index a64115cc..2214d211 100644 --- a/js/jquery.mobile.forms.checkboxradio.js +++ b/js/jquery.mobile.forms.checkboxradio.js @@ -58,9 +58,9 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, { .wrapAll( "
" ); label.bind({ - vmouseover: function() { + vmouseover: function( event ) { if ( $( this ).parent().is( ".ui-disabled" ) ) { - return false; + event.stopPropagation(); } },