TGUI PDAs, legacy code to-be-removed

This commit is contained in:
ShadowLarkens
2020-09-16 01:52:45 -07:00
parent 8c338ed9da
commit bec0942513
49 changed files with 2023 additions and 2462 deletions

View File

@@ -120,10 +120,11 @@ export const decodeHtmlEntities = str => {
if (!str) {
return str;
}
const translate_re = /&(nbsp|amp|quot|lt|gt|apos|trade);/g;
const translate_re = /&(nbsp|amp|deg|quot|lt|gt|apos|trade);/g;
const translate = {
nbsp: ' ',
amp: '&',
deg: '°',
quot: '"',
lt: '<',
gt: '>',