f41c8652c3455c2c5c4fbc0af85f82e6c35181aa
[odoo/odoo.git] / addons / mail_tip / static / src / js / mail_tip.js
1 openerp.web_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 };