浏览代码

Multiline messages support (Fix #223)

RobinLinus 4 年之前
父节点
当前提交
6a5ad0f1fb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      client/scripts/ui.js

+ 1 - 1
client/scripts/ui.js

@@ -335,7 +335,7 @@ class SendTextDialog extends Dialog {
         e.preventDefault();
         Events.fire('send-text', {
             to: this._recipient,
-            text: this.$text.textContent
+            text: this.$text.innerText
         });
     }
 }