[IMP] Wall: when posting a comment, textarea value is reset.

bzr revid: tde@openerp.com-20120406103545-jjr6aebpivi9bmzf
This commit is contained in:
Thibault Delavallée 2012-04-06 12:35:45 +02:00
parent d177d00fb2
commit c21453db8d
1 changed files with 3 additions and 1 deletions

View File

@ -771,7 +771,9 @@ openerp.mail = function(session) {
/** Action: Posts a comment */
do_comment: function () {
var body_text = this.$element.find('textarea.oe_mail_wall_action_textarea').val();
var comment_node = this.$element.find('textarea.oe_mail_wall_action_textarea');
var body_text = comment_node.val();
comment_node.val('');
var call_done = this.ds_users.call('message_append_note', [[this.session.uid], 'Tweet', body_text, false, 'comment', 'html']).then(this.proxy('init_and_fetch_comments'));
},
});