Mouseover tooltips for message buttons

ipad-testing
Noah 2023-08-16 22:42:51 -07:00
parent 42fa0e0e7a
commit 0a4fa00087
1 changed files with 3 additions and 1 deletions

View File

@ -1119,7 +1119,8 @@
<div class="columns is-mobile">
<div class="column pr-1 is-narrow" v-if="canUploadFile">
<button type="button" class="button"
@click="uploadFile()">
@click="uploadFile()"
title="Upload a picture to share in chat">
<i class="fa fa-image"></i>
</button>
</div>
@ -1136,6 +1137,7 @@
<div class="column pl-1 is-narrow">
<button type="button" class="button"
:disabled="message.length === 0"
title="Click to send your message"
@click="sendMessage()">
<i class="fa fa-paper-plane"></i>
</button>