From 328d457d14cf758d43cc258155b79f922d250df8 Mon Sep 17 00:00:00 2001 From: "Adrien Peiffer (ACSONE)" Date: Wed, 23 Nov 2016 12:03:35 +0100 Subject: [PATCH] [FIX] Return result of super of show_application --- web_notify/static/src/js/web_client.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web_notify/static/src/js/web_client.js b/web_notify/static/src/js/web_client.js index 3a52312d..825fc7d6 100644 --- a/web_notify/static/src/js/web_client.js +++ b/web_notify/static/src/js/web_client.js @@ -10,8 +10,9 @@ WebClient.include({ this._super(parent, client_options); }, show_application: function() { - this._super(); + var res = this._super(); this.start_polling(); + return res }, on_logout: function() { var self = this;