mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-10 14:44:40 +02:00
* Fix ANSI description display during upload
* Major improvements to upload: Allow user to properly edit descriptions even if provided by .diz/system/etc.
This commit is contained in:
parent
861055d935
commit
50bac95857
3 changed files with 57 additions and 23 deletions
|
@ -623,6 +623,10 @@ function isFormattedLine(line) {
|
|||
}
|
||||
|
||||
function isAnsi(input) {
|
||||
if(!input || 0 === input.length) {
|
||||
return false;
|
||||
}
|
||||
|
||||
//
|
||||
// * ANSI found - limited, just colors
|
||||
// * Full ANSI art
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue