Browse Source

[FIX] Return from method

pull/972/head
Gabriel Cardoso de Faria 6 years ago
parent
commit
1bc38852f7
  1. 3
      web_auto_refresh/static/src/js/web_auto_refresh.js

3
web_auto_refresh/static/src/js/web_auto_refresh.js

@ -15,8 +15,9 @@ odoo.define('web_auto_refresh', function (require) {
this.known_bus_events = [];
},
show_application: function() {
this._super();
let res = this._super();
this.start_polling();
return res;
},
on_logout: function() {
bus.off('notification', this, this.bus_notification);

Loading…
Cancel
Save