From: Jonny Tischbein Date: Thu, 20 Sep 2018 15:23:29 +0000 (+0200) Subject: correct textarea id in insertFormattingToPost X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=763ed35bc3c1222d6492c8027bbaf3d77684d220;p=friendica.git correct textarea id in insertFormattingToPost --- diff --git a/view/theme/frio/js/textedit.js b/view/theme/frio/js/textedit.js index cc79ea938e..ad5f950234 100644 --- a/view/theme/frio/js/textedit.js +++ b/view/theme/frio/js/textedit.js @@ -28,7 +28,7 @@ function insertFormatting(BBcode, id) { } function insertFormattingToPost(BBcode) { - textarea = document.getElementById("#profile-jot-text"); + textarea = document.getElementById("profile-jot-text"); if (document.selection) { textarea.focus(); selected = document.selection.createRange();