From a298819cd786599dfd40147b01ff7117e26e5d7f Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 21 Nov 2012 13:10:05 +0100 Subject: [PATCH] [FIX] web_hello: inherited start() method should return the result of the super call bzr revid: odo@openerp.com-20121121121005-f28bcm1k022ec1il --- addons/web_hello/static/openerp/base_hello.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web_hello/static/openerp/base_hello.js b/addons/web_hello/static/openerp/base_hello.js index 0a22079aa53..d36a6da6c13 100644 --- a/addons/web_hello/static/openerp/base_hello.js +++ b/addons/web_hello/static/openerp/base_hello.js @@ -16,7 +16,7 @@ instance.web.SearchView = instance.web.SearchView.extend({ instance.web.Login = instance.web.Login.extend({ start: function() { console.log('Hello there'); - this._super.apply(this,arguments); + return this._super.apply(this,arguments); } });