[FIX] Return result of super of show_application

This commit is contained in:
Adrien Peiffer (ACSONE)
2016-11-23 12:03:35 +01:00
committed by Jairo Llopis
parent 21de391509
commit 04e1bab630

View File

@@ -10,8 +10,9 @@ WebClient.include({
this._super(parent, client_options); this._super(parent, client_options);
}, },
show_application: function() { show_application: function() {
this._super(); var res = this._super();
this.start_polling(); this.start_polling();
return res
}, },
on_logout: function() { on_logout: function() {
var self = this; var self = this;