From fe2d97315b279cec5dacf25c1f555696fbb180f2 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 4 Aug 2018 22:10:09 +0200 Subject: [PATCH] [vier] Add missing addeditortext() JS function in compose private message page --- view/templates/msg-header.tpl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/view/templates/msg-header.tpl b/view/templates/msg-header.tpl index 653b3d566..4644b954e 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); + } +