Commit 33f62bb9 authored by JC Brand's avatar JC Brand

Update changelog for previous revert and add `title` for img emoji

parent a65da050
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
## 8.0.0 (Unreleased) ## 8.0.0 (Unreleased)
- #1083: Add support for XEP-0393 Message Styling - #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) - New configuration setting: [show_tab_notifications](https://conversejs.org/docs/html/configuration.html#show-tab-notifications)
### Breaking Changes ### Breaking Changes
......
...@@ -126,6 +126,7 @@ export function getEmojiMarkup (data, options={unicode_only: false, add_title_wr ...@@ -126,6 +126,7 @@ export function getEmojiMarkup (data, options={unicode_only: false, add_title_wr
const path = api.settings.get('emoji_image_path'); const path = api.settings.get('emoji_image_path');
return html`<img class="emoji" return html`<img class="emoji"
draggable="false" draggable="false"
title="${shortname}"
alt="${emoji}" alt="${emoji}"
src="${path}/72x72/${data.cp}.png"/>`; src="${path}/72x72/${data.cp}.png"/>`;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment