[FIX] mail_tip: prevent blank webclient
[odoo/odoo.git] / addons / mail_tip / static / src / js / mail_tip.js
1 openerp.mail_tip = function(session) {
2     session.mail.Thread.include({
3         message_fetch: function() {
4             return this._super.apply(this, arguments).done(function() {
5                 openerp.web.bus.trigger('chatter_messages_fetched');
6             });
7         }
8     });
9 };