[FIX] Banner tour redirects to homepage

bzr revid: ddm@openerp.com-20131115102434-i8vq7xgn6lbpz34f
This commit is contained in:
ddm 2013-11-15 11:24:34 +01:00
parent f449371223
commit d8f8974f51
1 changed files with 3 additions and 0 deletions

View File

@ -143,6 +143,9 @@
var bannerTour = new website.EditorBannerTour(this);
var $menuItem = $($.parseHTML('<li><a href="#">'+bannerTour.name+'</a></li>'));
$menuItem.click(function () {
if (url.pathname !== '/' && url.pathname !== '/page/website.homepage') {
window.location.replace('/page/website.homepage?banner-tutorial=true');
}
bannerTour.reset();
bannerTour.start();
});