#292 Add button titles

This commit is contained in:
SillyLossy
2023-05-13 18:48:51 +03:00
parent 84e48adc69
commit 835c17b40c
5 changed files with 5 additions and 4 deletions

View File

@ -96,6 +96,7 @@ $(document).ready(function () {
function addSendPictureButton() {
const sendButton = document.createElement('div');
sendButton.id = 'send_picture';
sendButton.title = 'Send a picture to chat';
sendButton.classList.add('fa-solid');
$(sendButton).hide();
$(sendButton).on('click', () => $('#img_file').click());