diff --git a/src/js/yunohost/controllers/postinstall.js b/src/js/yunohost/controllers/postinstall.js index 3760920c..04f7d7e9 100644 --- a/src/js/yunohost/controllers/postinstall.js +++ b/src/js/yunohost/controllers/postinstall.js @@ -51,7 +51,7 @@ } store.set('maindomain', domain); }); - }); + }, false); // We disable enableSlide because that causes some issues with accordion when using the 'previous' button }); }); @@ -62,7 +62,9 @@ store.clear('slide'); c.redirect('#/postinstall/domain'); } else { - c.view('postinstall/postinstall_3', { 'domain': store.get('maindomain').toLowerCase() }); + c.view('postinstall/postinstall_3', { 'domain': store.get('maindomain').toLowerCase() }, + function() { }, + false); // We disable enableSlide because that causes some issues with accordion when using the 'previous' button } });