mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-06 12:47:13 +02:00
* Fix justification 'right' vs 'left': They were flipped (durp!). Right aligned is now really that, etc. You may need to update your theme.hjson/similar!
This commit is contained in:
parent
ac1433e84b
commit
a8d5e84779
5 changed files with 23 additions and 25 deletions
|
@ -122,10 +122,10 @@ function quote(s) {
|
|||
|
||||
function getPadAlign(align) {
|
||||
return {
|
||||
'<' : 'right',
|
||||
'>' : 'left',
|
||||
'<' : 'left',
|
||||
'>' : 'right',
|
||||
'^' : 'center',
|
||||
}[align] || '<';
|
||||
}[align] || '>';
|
||||
}
|
||||
|
||||
function formatString(value, tokens) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue