Modify change when switch pages always scroll current page to top

This commit is contained in:
2023-02-05 22:35:15 +08:00
parent 63c3653478
commit a58505cc7a
2 changed files with 5 additions and 1 deletions

View File

@@ -64,6 +64,10 @@ const pageController = {
$('#' + pageId).show();
$('#' + itemId).addClass('mdui-list-item-active');
pageController.changePageTitle(title);
pageController.scrollToTop();
},
scrollToTop: () => {
$('body, html, #body-container').scrollTop(0);
},
changePageTitle: (title) => {
$('#page-title-text').html(title);