mirror of https://github.com/OCA/web.git
Update the chatter widget after closing the composition wizard
parent
56c8280b80
commit
390f078636
|
@ -51,8 +51,14 @@ instance.web.form.FieldEmailIntern = instance.web.form.FieldChar.extend({
|
|||
default_res_id: fm.datarecord.id,
|
||||
},
|
||||
on_close: function(){
|
||||
/* Todo: refresh the chatter widget here
|
||||
*/
|
||||
// refresh the chatter widget here
|
||||
$.each(self.view.getChildren(),
|
||||
function(index, value){
|
||||
if(value.widget=='mail_thread'){
|
||||
value.root.thread.message_fetch()
|
||||
}
|
||||
}
|
||||
);
|
||||
},
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue