mirror of
https://github.com/friendica/friendica
synced 2025-04-25 07:50:10 +00:00
Replace obsolete #comment-preview-inp field by query string append
This commit is contained in:
parent
0b6f231ad3
commit
c25527cbe8
9 changed files with 1 additions and 11 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue