Update changelog for previous revert and add title for img emoji

This commit is contained in:
JC Brand 2020-11-26 14:25:54 +01:00
parent a65da05094
commit 33f62bb93c
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
## 8.0.0 (Unreleased)
- #1083: Add support for XEP-0393 Message Styling
- Bugfix: `null` inserted by emoji picker and can't switch between skintones
- New configuration setting: [show_tab_notifications](https://conversejs.org/docs/html/configuration.html#show-tab-notifications)
### Breaking Changes

View File

@ -126,6 +126,7 @@ export function getEmojiMarkup (data, options={unicode_only: false, add_title_wr
const path = api.settings.get('emoji_image_path');
return html`<img class="emoji"
draggable="false"
title="${shortname}"
alt="${emoji}"
src="${path}/72x72/${data.cp}.png"/>`;
}