reset text-area size after commenting

pull/83/head
Aevann 2022-12-25 01:21:52 +02:00
parent ee8635ef63
commit 108e7781ea
1 changed files with 3 additions and 1 deletions

View File

@ -199,6 +199,7 @@ function comment_edit(id){
function postComment(fullname, hide){
const btn = document.getElementById('save-reply-to-'+fullname)
const textArea = document.getElementById('reply-form-body-'+fullname)
btn.disabled = true
btn.classList.add('disabled');
@ -206,7 +207,7 @@ function postComment(fullname, hide){
form.append('formkey', formkey());
form.append('parent_fullname', fullname);
form.append('body', document.getElementById('reply-form-body-'+fullname).value);
form.append('body', textArea.value);
try {
for (const e of document.getElementById('file-upload-reply-'+fullname).files)
@ -243,6 +244,7 @@ function postComment(fullname, hide){
document.getElementById('charcount-'+fullname).innerHTML = ''
document.getElementById('filename-show-reply-' + fullname).innerHTML = '<i class="fas fa-file"></i>';
document.getElementById('file-upload-reply-'+fullname).value = null;
autoExpand(textArea);
}
else {
showToast(false, getMessageFromJsonData(false, data));