Explorar el Código

Multiline messages support (Fix #223)

RobinLinus hace 4 años
padre
commit
6a5ad0f1fb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
         });
     }
 }