mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-04 20:54:46 +00:00
Merge branch 'patch-1' of https://github.com/eugenb1/jquery-mobile into eugenb1-patch-1
This commit is contained in:
commit
9066a0b932
1 changed files with 1 additions and 1 deletions
|
|
@ -315,7 +315,7 @@ $.widget( "mobile.slider", $.mobile.widget, {
|
|||
this.handle.attr( {
|
||||
"aria-valuenow": cType === "input" ? newval : control.find( "option" ).eq( newval ).attr( "value" ),
|
||||
"aria-valuetext": cType === "input" ? newval : control.find( "option" ).eq( newval ).getEncodedText(),
|
||||
title: newval
|
||||
title: cType === "input" ? newval : control.find( "option" ).eq( newval ).getEncodedText()
|
||||
});
|
||||
|
||||
// add/remove classes for flip toggle switch
|
||||
|
|
|
|||
Loading…
Reference in a new issue