[FIX] web_hello: inherited start() method should return the result of the super call

bzr revid: odo@openerp.com-20121121121005-f28bcm1k022ec1il
This commit is contained in:
Olivier Dony 2012-11-21 13:10:05 +01:00
parent d61507a799
commit a298819cd7
1 changed files with 1 additions and 1 deletions

View 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);
}
});