* Fix 'small i' textStyle
This commit is contained in:
parent
8bc2f31967
commit
2c4711a976
|
@ -84,7 +84,7 @@ function stylizeString(s, style) {
|
|||
|
||||
// Small i's: DEMENTiA
|
||||
case 'small i' :
|
||||
case 'i' : return s.toUpperCase().replace('I', 'i');
|
||||
case 'i' : return s.toUpperCase().replace(/I/g, 'i');
|
||||
|
||||
// mIxeD CaSE (random upper/lower)
|
||||
case 'mixed' :
|
||||
|
|
|
@ -188,7 +188,8 @@
|
|||
"Spinner & Toggle Views",
|
||||
"Other"
|
||||
],
|
||||
"focusTextStyle" : "U"
|
||||
// :TODO: justify not working??
|
||||
"focusTextStyle" : "small i"
|
||||
}
|
||||
},
|
||||
"submit" : {
|
||||
|
|
Loading…
Reference in New Issue