diff options
Diffstat (limited to 'view/theme/duepuntozero/theme.php')
-rw-r--r-- | view/theme/duepuntozero/theme.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php index 8c7e6c607..2498852f9 100644 --- a/view/theme/duepuntozero/theme.php +++ b/view/theme/duepuntozero/theme.php @@ -12,7 +12,8 @@ function insertFormatting(comment,BBcode,id) { $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); openMenu("comment-edit-submit-wrapper-" + id); - } + $("#comment-edit-text-" + id).val(tmpStr); + } textarea = document.getElementById("comment-edit-text-" +id); if (document.selection) { @@ -36,7 +37,7 @@ function insertFormatting(comment,BBcode,id) { function cmtBbOpen(id) { $(".comment-edit-bb-" + id).show(); } -function cmtBbClose(id) { +function cmtBbClose(comment, id) { $(".comment-edit-bb-" + id).hide(); } $(document).ready(function() { |