Merge pull request #10394 from nextcloud/bugfix/10381/fix-avatar-sizing
Fix avatar sizing for comments
This commit is contained in:
commit
cf98d9c8d3
|
@ -386,7 +386,11 @@
|
|||
|
||||
_postRenderItem: function($el, editionMode) {
|
||||
$el.find('.has-tooltip').tooltip();
|
||||
$el.find('.avatar').each(function () {
|
||||
var inlineAvatars = $el.find('.message .avatar');
|
||||
if ($($el.context).hasClass('message')) {
|
||||
inlineAvatars = $el.find('.avatar');
|
||||
}
|
||||
inlineAvatars.each(function () {
|
||||
var $this = $(this);
|
||||
$this.avatar($this.attr('data-username'), 16);
|
||||
});
|
||||
|
|
|
@ -133,7 +133,11 @@
|
|||
}
|
||||
};
|
||||
|
||||
$div.addClass('icon-loading');
|
||||
if (size < 32) {
|
||||
$div.addClass('icon-loading-small');
|
||||
} else {
|
||||
$div.addClass('icon-loading');
|
||||
}
|
||||
img.width = size;
|
||||
img.height = size;
|
||||
img.src = url;
|
||||
|
|
|
@ -169,5 +169,6 @@
|
|||
this.css('font-size', '');
|
||||
this.html('');
|
||||
this.removeClass('icon-loading');
|
||||
this.removeClass('icon-loading-small');
|
||||
};
|
||||
}(jQuery));
|
||||
|
|
Loading…
Reference in New Issue