]> git.mxchange.org Git - friendica.git/commitdiff
correct textarea id in insertFormattingToPost
authorJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 20 Sep 2018 15:23:29 +0000 (17:23 +0200)
committerJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 20 Sep 2018 15:23:29 +0000 (17:23 +0200)
view/theme/frio/js/textedit.js

index cc79ea938e11073bd687ff7ba8d46541da7b560b..ad5f9502341bc7e5fa5b4e205fa3ebc68e9eaabd 100644 (file)
@@ -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();