Commit 4e467044 authored by JC Brand's avatar JC Brand

Some usability fixes around the toolbar and emojis

parent 70f56b31
...@@ -703,15 +703,17 @@ ...@@ -703,15 +703,17 @@
} else { } else {
target = ev.target; target = ev.target;
} }
this.insertIntoTextArea( var shortname = target.getAttribute('data-emoticon');
emojione.shortnameToUnicode( this.insertIntoTextArea( emojione.shortnameToUnicode(shortname));
target.getAttribute('data-emoticon')
));
}, },
toggleEmoticonMenu: function (ev) { toggleEmoticonMenu: function (ev) {
if (!_.isUndefined(ev)) { if (!_.isUndefined(ev)) {
ev.stopPropagation(); ev.stopPropagation();
if (ev.target.classList.contains('emoji-category-picker') ||
ev.target.classList.contains('emoji-category')) {
return;
}
} }
utils.toggleElement(this.emoji_picker_view.el); utils.toggleElement(this.emoji_picker_view.el);
}, },
......
...@@ -438,7 +438,7 @@ ...@@ -438,7 +438,7 @@
'click .close-chatbox-button': 'close', 'click .close-chatbox-button': 'close',
'click .configure-chatroom-button': 'getAndRenderConfigurationForm', 'click .configure-chatroom-button': 'getAndRenderConfigurationForm',
'click .toggle-smiley': 'toggleEmoticonMenu', 'click .toggle-smiley': 'toggleEmoticonMenu',
'click .toggle-smiley ul li': 'insertEmoticon', 'click .toggle-smiley ul.emoji-picker li': 'insertEmoticon',
'click .toggle-clear': 'clearChatRoomMessages', 'click .toggle-clear': 'clearChatRoomMessages',
'click .toggle-call': 'toggleCall', 'click .toggle-call': 'toggleCall',
'click .toggle-occupants a': 'toggleOccupants', 'click .toggle-occupants a': 'toggleOccupants',
......
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