* 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
|
// Small i's: DEMENTiA
|
||||||
case 'small i' :
|
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)
|
// mIxeD CaSE (random upper/lower)
|
||||||
case 'mixed' :
|
case 'mixed' :
|
||||||
|
|
|
@ -188,7 +188,8 @@
|
||||||
"Spinner & Toggle Views",
|
"Spinner & Toggle Views",
|
||||||
"Other"
|
"Other"
|
||||||
],
|
],
|
||||||
"focusTextStyle" : "U"
|
// :TODO: justify not working??
|
||||||
|
"focusTextStyle" : "small i"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"submit" : {
|
"submit" : {
|
||||||
|
|
Loading…
Reference in New Issue