mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-16 04:11:01 +00:00
fixed a var typo. Thanks @mschroeder.
This commit is contained in:
parent
fc0cd38c4e
commit
2b7a2669ac
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, {
|
|||
_updateAll: function(){
|
||||
this._getInputSet().each(function(){
|
||||
var dVal = $(this).data("cacheVal");
|
||||
if( dVal && dVal !== $(this).is(":checked") || this.nputtype === "checkbox" ){
|
||||
if( dVal && dVal !== $(this).is(":checked") || this.inputtype === "checkbox" ){
|
||||
$(this).trigger("change");
|
||||
}
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue