[FIX] Thread widget: expander now applied to the correct span containing the message, fixing the wall not displaying 'more / less' BTW.

bzr revid: tde@openerp.com-20120510151538-uq8vq67x3x7mdjps
This commit is contained in:
Thibault Delavallée 2012-05-10 17:15:38 +02:00
parent 959551022d
commit 2817d119b6
1 changed files with 2 additions and 2 deletions

View File

@ -285,13 +285,13 @@ openerp.mail = function(session) {
// body text manipulation
record.body = this.do_clean_text(record.body);
record.body = this.do_replace_internal_links(record.body);
this.$element.find('span.oe_mail_msg_body:last').expander({slicePoint: this.params.msg_more_limit, moreClass: 'oe_mail_expand', lesClass: 'oe_mail_reduce'});
// format date according to the user timezone
record.date = session.web.format_value(record.date, {type:"datetime"});
// render
$(session.web.qweb.render('ThreadMsg', {'record': record, 'thread': this, 'params': this.params, 'display': this.display})
).appendTo(this.$element.children('div.oe_mail_thread_display:first'));
// truncated: hide full-text, show summary, add buttons
// expand feature
this.$element.find('span.oe_mail_msg_body:last').expander({slicePoint: this.params.msg_more_limit, moreClass: 'oe_mail_expand', lesClass: 'oe_mail_reduce'});
},
/**