Use toggle_emoji_reaction() in the emoji picker.

If we know the name of the emoji you need to toggle,
we can toggle_emoji_reaction(), which is less complex
than toggle_reaction().
This commit is contained in:
Steve Howell 2017-05-29 15:25:35 -06:00
parent 805c99ae27
commit 1ee757a237
1 changed files with 2 additions and 2 deletions

View File

@ -143,7 +143,7 @@ function maybe_select_emoji(e) {
if (emoji_picker.is_composition(first_emoji)) {
first_emoji.click();
} else {
exports.toggle_reaction(current_msg_list.selected_id(), first_emoji.title);
exports.toggle_emoji_reaction(current_msg_list.selected_id(), first_emoji.title);
}
}
}
@ -165,7 +165,7 @@ $(document).on('click', '.emoji-popover-emoji.reaction', function () {
if (exports.current_user_has_reacted_to_emoji(message, emoji_name)) {
$(this).removeClass('reacted');
}
exports.toggle_reaction(message_id, emoji_name);
exports.toggle_emoji_reaction(message_id, emoji_name);
});
$(document).on('input', '.emoji-popover-filter', filter_emojis);