diff --git a/view/js/main.js b/view/js/main.js index a2e2698a82..8b1303e7d3 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -632,7 +632,6 @@ function post_comment(id) { unpause(); commentBusy = true; $('body').css('cursor', 'wait'); - $("#comment-preview-inp-" + id).val("0"); $.post( "item", $("#comment-edit-form-" + id).serialize(), @@ -661,11 +660,10 @@ function post_comment(id) { } function preview_comment(id) { - $("#comment-preview-inp-" + id).val("1"); $("#comment-edit-preview-" + id).show(); $.post( "item", - $("#comment-edit-form-" + id).serialize(), + $("#comment-edit-form-" + id).serialize() + '&preview=1', function(data) { if (data.preview) { $("#comment-edit-preview-" + id).html(data.preview); diff --git a/view/templates/comment_item.tpl b/view/templates/comment_item.tpl index 352ff417f0..977a5b75b2 100644 --- a/view/templates/comment_item.tpl +++ b/view/templates/comment_item.tpl @@ -10,7 +10,6 @@ {{**}} -