[IMP] mail: deferred

bzr revid: chm@openerp.com-20121017104026-zamtldzb0k3s551s
This commit is contained in:
Christophe Matthieu 2012-10-17 12:40:26 +02:00
parent ec88647be0
commit 09ee80ce68
1 changed files with 2 additions and 1 deletions

View File

@ -1307,7 +1307,7 @@ openerp.mail = function(session) {
var thread_displayed = this.message_render();
this.options.domain = this.options.domain.concat(this.search_results['domain']);
this.bind_events();
return (searchview_ready && thread_displayed);
return $.when(searchview_ready, thread_displayed);
},
/**
@ -1377,6 +1377,7 @@ openerp.mail = function(session) {
bind_events: function(){
var self=this;
this.$("button.oe_write_full:first").click(function(){ self.thread.ComposeMessage.on_compose_fullmail(); });
this.$("button.oe_write_onwall:first").click(function(){ self.thread.ComposeMessage.$el.toggle(); });
}
});