소스 검색

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
         });
     }
 }