change double click reference messages

This commit is contained in:
biglyderv 2025-04-22 13:21:48 -04:00
parent 431d35dd60
commit 411eb73522
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@
<ul id="messages"></ul>
<form id="form" action="">
<div class='inner-form'>
<input placeholder="Double click text to paste" id="input" autocomplete="off" />
<input placeholder="Click text to paste" id="input" autocomplete="off" />
</div>
<div class='inner-form'>
<button class='send'><a href='#'>Send</a></button>

View file

@ -72,7 +72,7 @@ async function addMsg(msg) {
}
wrap.appendChild(item);
item.title = 'Double click to copy';
item.title = 'Click to copy';
}
messages.appendChild(wrap);
window.scrollTo(0, messages.offsetHeight);