[IMP] website_sale: hide test tour from help menu

bzr revid: chm@openerp.com-20140124094241-z1pf5895w2f2sfrh
This commit is contained in:
Christophe Matthieu 2014-01-24 10:42:41 +01:00
parent 41210f45df
commit 8a5844d191
1 changed files with 2 additions and 1 deletions

View File

@ -6,8 +6,9 @@
website.EditorBar.include({
start: function () {
this.registerTour(new website.EditorShopTour(this));
var res = this._super();
this.registerTour(new website.EditorShopTest(this));
return this._super();
return res;
},
});