prefer textContent over innerText as it's faster

and transforms the text less
This commit is contained in:
Bruno Windels
2019-05-14 15:38:16 +01:00
parent 317e88bef2
commit bb73521f0c
+6 -4
View File
@@ -37,14 +37,16 @@ function parseHtmlMessage(html) {
const resourceId = pillMatch[1]; // The room/user ID
const prefix = pillMatch[2]; // The first character of prefix
switch (prefix) {
case "@": return new UserPillPart(resourceId);
case "#": return new RoomPillPart(resourceId);
default: return new PlainPart(n.innerText);
case "@": return new UserPillPart(resourceId, n.textContent);
case "#": return new RoomPillPart(resourceId, n.textContent);
default: return new PlainPart(n.textContent);
}
}
default:
return new PlainPart(n.innerText);
return new PlainPart(n.textContent);
}
default:
return null;
}
}).filter(p => !!p);
return parts;