Skip to content
Snippets Groups Projects
Commit 3a799098 authored by ubermanu's avatar ubermanu
Browse files

enable skin tone emojis

parent da1e1e77
No related branches found
No related tags found
2 merge requests!136Reactions, Retract upload...,!117Reactions
......@@ -180,7 +180,7 @@ converse.plugins.add('sib-reactions', {
self.appendChild(picker);
picker.addEventListener('emoji-click', function(e) {
const emoji = e.detail.emoji.unicode;
const emoji = e.detail.unicode;
const emojis = getUserReactionEmojis(self.model);
// TODO: If it has the reaction from this user already, remove it? (config)
......@@ -248,7 +248,7 @@ converse.plugins.add('sib-reactions', {
el.appendChild(picker);
picker.addEventListener('emoji-click', function(e) {
const emoji = e.detail.emoji.unicode;
const emoji = e.detail.unicode;
const emojis = getUserReactionEmojis(el.model);
// TODO: If it has the reaction from this user already, remove it? (config)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment