From 45b4b71fa432cc6c9b521bd6b31667e2d9872bea Mon Sep 17 00:00:00 2001 From: Denis Ledoux <dle@odoo.com> Date: Wed, 17 Sep 2014 18:03:34 +0200 Subject: [PATCH] [FIX] mail: chatter read more/less expand first oe_msg_body_long/short in the first oe_msg_body Otherwise, if the mail itself contains a oe_msg_body_long (because sent in the mail history), it will open that one --- addons/mail/static/src/js/mail.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/mail/static/src/js/mail.js b/addons/mail/static/src/js/mail.js index 9bc3957f3390..5d7f6f0afbeb 100644 --- a/addons/mail/static/src/js/mail.js +++ b/addons/mail/static/src/js/mail.js @@ -973,8 +973,8 @@ openerp.mail = function (session) { on_expand: function (event) { event.stopPropagation(); - this.$('.oe_msg_body_short:first').toggle(); - this.$('.oe_msg_body_long:first').toggle(); + this.$('.oe_msg_body:first > .oe_msg_body_short:first').toggle(); + this.$('.oe_msg_body:first > .oe_msg_body_long:first').toggle(); return false; }, -- GitLab