mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-11 01:41:01 +00:00
Ensure more specific selector works for radio
This commit is contained in:
parent
7e49a8f648
commit
ea0470f099
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, {
|
|||
.bind({
|
||||
|
||||
click: function() {
|
||||
jQuery( "input[name='" + input.attr( "name" ) + "'][type='checkbox']" ).checkboxradio( "refresh" );
|
||||
jQuery( "input[name='" + input.attr( "name" ) + "'][type='" + input.attr( "type" ) + "']" ).checkboxradio( "refresh" );
|
||||
},
|
||||
|
||||
focus: function() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue