Remove show() function since we always show the avatar container
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
ecf8850464
commit
04a18098e4
|
@ -110,9 +110,8 @@
|
||||||
|
|
||||||
// If the new image loads successfully set it.
|
// If the new image loads successfully set it.
|
||||||
img.onload = function() {
|
img.onload = function() {
|
||||||
$div.text('');
|
|
||||||
$div.append(img);
|
|
||||||
$div.clearimageplaceholder();
|
$div.clearimageplaceholder();
|
||||||
|
$div.append(img);
|
||||||
|
|
||||||
if(typeof callback === 'function') {
|
if(typeof callback === 'function') {
|
||||||
callback();
|
callback();
|
||||||
|
@ -127,7 +126,6 @@
|
||||||
$div.imageplaceholder(user, displayname);
|
$div.imageplaceholder(user, displayname);
|
||||||
} else {
|
} else {
|
||||||
setAvatarForUnknownUser($div);
|
setAvatarForUnknownUser($div);
|
||||||
$div.removeClass('icon-loading');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(typeof callback === 'function') {
|
if(typeof callback === 'function') {
|
||||||
|
@ -136,7 +134,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
$div.addClass('icon-loading');
|
$div.addClass('icon-loading');
|
||||||
$div.show();
|
|
||||||
img.width = size;
|
img.width = size;
|
||||||
img.height = size;
|
img.height = size;
|
||||||
img.src = url;
|
img.src = url;
|
||||||
|
|
|
@ -156,6 +156,7 @@
|
||||||
this.css('text-align', '');
|
this.css('text-align', '');
|
||||||
this.css('line-height', '');
|
this.css('line-height', '');
|
||||||
this.css('font-size', '');
|
this.css('font-size', '');
|
||||||
|
this.html('');
|
||||||
this.removeClass('icon-loading');
|
this.removeClass('icon-loading');
|
||||||
};
|
};
|
||||||
}(jQuery));
|
}(jQuery));
|
||||||
|
|
Loading…
Reference in New Issue