From: Hypolite Petovan Date: Sat, 4 Aug 2018 20:10:09 +0000 (+0200) Subject: [vier] Add missing addeditortext() JS function in compose private message page X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fe2d97315b279cec5dacf25c1f555696fbb180f2;p=friendica.git [vier] Add missing addeditortext() JS function in compose private message page --- diff --git a/view/templates/msg-header.tpl b/view/templates/msg-header.tpl index 653b3d5661..4644b954e6 100644 --- a/view/templates/msg-header.tpl +++ b/view/templates/msg-header.tpl @@ -49,5 +49,10 @@ } } + function addeditortext(data) { + var currentText = $("#prvmail-text").val(); + $("#prvmail-text").val(currentText + data); + } +