[FIX] web_hello: inherited start() method should return the result of the super call
authorOlivier Dony <odo@openerp.com>
Wed, 21 Nov 2012 12:10:05 +0000 (13:10 +0100)
committerOlivier Dony <odo@openerp.com>
Wed, 21 Nov 2012 12:10:05 +0000 (13:10 +0100)
bzr revid: odo@openerp.com-20121121121005-f28bcm1k022ec1il

addons/web_hello/static/openerp/base_hello.js

index 0a22079..d36a6da 100644 (file)
@@ -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);
     }
 });