fix typo in js file

pull/142/head
Aevann 2023-03-19 14:07:47 +02:00
parent 25ddafd3e6
commit 13c15a419b
1 changed files with 2 additions and 2 deletions

View File

@ -65,9 +65,9 @@ function toggleReplyBox(id) {
text = text.split('> Reply')[0]
text = text.replace(/\*/g,"\\*")
if (!t.value.endsWith('\n')) ta.value += '\n'
if (!ta.value.endsWith('\n')) ta.value += '\n'
ta.value += text
if (!t.value.endsWith('\n')) ta.value += '\n'
if (!ta.value.endsWith('\n')) ta.value += '\n'
}
ta.focus()
}