mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
filter out reply text when editing
This commit is contained in:
parent
9d6a818591
commit
f5da8162c1
1 changed files with 2 additions and 0 deletions
|
@ -66,6 +66,8 @@ function parseHtmlMessage(html, room) {
|
|||
break;
|
||||
case Node.ELEMENT_NODE:
|
||||
switch (n.nodeName) {
|
||||
case "MX-REPLY":
|
||||
break;
|
||||
case "DIV":
|
||||
case "P": {
|
||||
// block element should cause line break if not first
|
||||
|
|
Loading…
Reference in a new issue