forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-03-22 16:35:53 +02:00
parent ecb079b613
commit 49874f8871
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
<div style="overflow:hidden">
{% set text=m['text'] %}
<span class="chat-message text-black text-break">{{m['text_html'] | safe}}
<i onclick="quote('{{text}}')" class="fas fa-reply" aria-hidden="true"></i>
<button class="btn d-inline-block"><i onclick="quote('{{text}}')" class="fas fa-reply" aria-hidden="true"></i></button
</span>
</div>
</div>
@ -188,9 +188,9 @@
}
function quote(text) {
textbox.style.height = '80px'
textbox.value = '> ' + text + '\n\n'
textbox.focus()
autoExpand(textbox);
}
textbox.addEventListener("keyup", function(e) {