Make avatar round and center/resize image properly.

This commit is contained in:
JC Brand 2015-10-30 17:10:09 +00:00
parent 4619d886ad
commit c647783281
3 changed files with 8 additions and 1 deletions

View File

@ -2074,7 +2074,12 @@
var img = new Image(); // Create new Image object
img.onload = function () {
var ratio = img.width/img.height;
ctx.drawImage(img, 0,0, 35*ratio, 35);
if (ratio < 1) {
ctx.drawImage(img, 0,0, 32, 32*(1/ratio));
} else {
ctx.drawImage(img, 0,0, 32, 32*ratio);
}
};
img.src = img_src;
this.$el.find('.chat-title').before(canvas);

View File

@ -1241,6 +1241,7 @@
padding: 5px;
position: relative; }
#conversejs .chat-head .avatar {
border-radius: 50%;
float: left; }
#conversejs .chat-head.chat-head-chatbox {
background-color: #F4A261; }

View File

@ -15,6 +15,7 @@
padding: 5px;
position: relative;
.avatar {
border-radius: 50%;
float: left;
}
&.chat-head-chatbox {