[fix] mail: double clicking on post on the chatter

bzr revid: chm@openerp.com-20130320144101-5mz9mbar9j5vhppl
This commit is contained in:
Christophe Matthieu 2013-03-20 15:41:01 +01:00
parent 2c497fab50
commit 770b0cb380
1 changed files with 5 additions and 0 deletions

View File

@ -688,6 +688,10 @@ openerp.mail = function (session) {
on_message_post: function (event) {
var self = this;
if (self.flag_post) {
return;
}
self.flag_post = true;
if (this.do_check_attachment_upload() && (this.attachment_ids.length || this.$('textarea').val().match(/\S+/))) {
if (this.is_log) {
this.do_send_message_post([], this.is_log);
@ -735,6 +739,7 @@ openerp.mail = function (session) {
thread.insert_message( message, root ? undefined : self.$el, root );
});
self.on_cancel();
self.flag_post = false;
});
},