[IMP]mail: js/dom ok

bzr revid: chm@openerp.com-20121017151715-hh08mpd57dcj6o2d
This commit is contained in:
Christophe Matthieu 2012-10-17 17:17:15 +02:00
parent 81bc720be8
commit e33bcf5e02
1 changed files with 6 additions and 14 deletions

View File

@ -148,10 +148,7 @@ openerp.mail = function(session) {
start: function(){
this.display_attachments();
this.bind_events();
//load avatar img
var user_avatar = mail.ChatterUtils.get_image(this.session, 'res.users', 'image_small', this.session.uid);
this.$('img.oe_mail_icon').attr('src', user_avatar);
this.display_user_avatar();
},
/* upload the file on the server, add in the attachments list and reload display
@ -353,6 +350,11 @@ openerp.mail = function(session) {
return true;
}
},
display_user_avatar: function () {
var avatar = mail.ChatterUtils.get_image(this.session, 'res.users', 'image_small', this.session.uid);
return this.$('img.oe_msg_icon').attr('src', avatar);
},
});
/**
@ -862,11 +864,6 @@ openerp.mail = function(session) {
start: function() {
this._super.apply(this, arguments);
this.more_msg = this.$(">.oe_msg_more_message:first");
this.display_user_avatar();
this.bind_events();
},
@ -1159,11 +1156,6 @@ openerp.mail = function(session) {
return message
},
display_user_avatar: function () {
var avatar = mail.ChatterUtils.get_image(this.session, 'res.users', 'image_small', this.session.uid);
return this.$('img.oe_mail_icon').attr('src', avatar);
},
/* Send the records to his parent thread */
switch_new_message: function(records) {