fdfd
parent
c76003846d
commit
5533dbb466
|
@ -347,7 +347,7 @@
|
||||||
|
|
||||||
<div id="reply-to-{{c.id}}" class="d-none">
|
<div id="reply-to-{{c.id}}" class="d-none">
|
||||||
<div id="comment-form-space-{{c.fullname}}" class="comment-write collapsed child">
|
<div id="comment-form-space-{{c.fullname}}" class="comment-write collapsed child">
|
||||||
<form id="reply-to-t3_{{c.id}}" action="/api/comment" method="post" class="input-group" enctype="multipart/form-data">
|
<form id="reply-to-t3_{{c.id}}" action="/comment" method="post" class="input-group" enctype="multipart/form-data">
|
||||||
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
||||||
<input type="hidden" name="parent_fullname" value="{{c.fullname}}">
|
<input type="hidden" name="parent_fullname" value="{{c.fullname}}">
|
||||||
<input id="reply-form-submission-{{c.fullname}}" type="hidden" name="submission" value="{{c.post.id}}">
|
<input id="reply-form-submission-{{c.fullname}}" type="hidden" name="submission" value="{{c.post.id}}">
|
||||||
|
|
|
@ -495,7 +495,7 @@
|
||||||
form.append('body', document.getElementById('reply-form-body-'+fullname).value);
|
form.append('body', document.getElementById('reply-form-body-'+fullname).value);
|
||||||
form.append('file', document.getElementById('file-upload-reply-'+fullname).files[0]);
|
form.append('file', document.getElementById('file-upload-reply-'+fullname).files[0]);
|
||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
xhr.open("post", "/api/comment");
|
xhr.open("post", "/comment");
|
||||||
xhr.withCredentials=true;
|
xhr.withCredentials=true;
|
||||||
xhr.onload=function(){
|
xhr.onload=function(){
|
||||||
if (xhr.status==200) {
|
if (xhr.status==200) {
|
||||||
|
|
|
@ -525,7 +525,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="comment-form-space-{{p.fullname}}" class="comment-write mb-3">
|
<div id="comment-form-space-{{p.fullname}}" class="comment-write mb-3">
|
||||||
<form id="reply-to-{{p.fullname}}" class="input-group" action="/api/comment" method="post">
|
<form id="reply-to-{{p.fullname}}" class="input-group" action="/comment" method="post">
|
||||||
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
||||||
<input type="hidden" name="parent_fullname" value="t2_{{p.id}}">
|
<input type="hidden" name="parent_fullname" value="t2_{{p.id}}">
|
||||||
<input id="reply-form-submission-{{p.fullname}}" type="hidden" name="submission" value="{{p.id}}">
|
<input id="reply-form-submission-{{p.fullname}}" type="hidden" name="submission" value="{{p.id}}">
|
||||||
|
|
Loading…
Reference in New Issue