Fix reaction possition when there is attachments (#3099)

This commit is contained in:
Lauris BH 2017-12-06 05:17:50 +02:00 committed by Lunny Xiao
parent f1d8dda5b4
commit c7fb6e3087
1 changed files with 7 additions and 1 deletions

View File

@ -151,7 +151,13 @@ function initReactionSelector(parent) {
react.remove();
}
if (!resp.empty) {
react = $('<div class="ui attached segment reactions"></div>').appendTo(content);
react = $('<div class="ui attached segment reactions"></div>');
var attachments = content.find('.segment.bottom:first');
if (attachments.length > 0) {
react.insertBefore(attachments);
} else {
react.appendTo(content);
}
react.html(resp.html);
var hasEmoji = react.find('.has-emoji');
for (var i = 0; i < hasEmoji.length; i++) {