Update TGUI JS folder to Virgo again

This commit is contained in:
ShadowLarkens
2020-09-20 20:26:42 -07:00
parent 253f13bba8
commit 308f85cff8
72 changed files with 9169 additions and 277 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: '>',