mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-06 12:47:13 +02:00
* Fix 'small i' textStyle
This commit is contained in:
parent
8bc2f31967
commit
2c4711a976
2 changed files with 3 additions and 2 deletions
|
@ -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' :
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue