snapdrop

A Progressive Web App for local file sharing
git clone http://git.hanabi.in/repos/snapdrop.git
Log | Files | Refs | README | LICENSE

commit 6a5ad0f1fbe930b6953ba8b5f96a0e5964158c78
parent 5462b0c17fb3b100aeaab9dc41dd243f08c7ac17
Author: RobinLinus <robinlinus@users.noreply.github.com>
Date:   Mon, 28 Dec 2020 20:21:50 +0100

Multiline messages support (Fix #223)

Diffstat:
Mclient/scripts/ui.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/scripts/ui.js b/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 }); } }