__Environment__ ``` [Core] onsenui latest [Platform] Desktop - Windows 10 64-bit [Browser] Desktop - Chrome 80.0.3987.149 on Windows 10 64-bit ``` __Encountered problem__ If you set item-width in ons-carousel and execute pushPage and then execute popPage, the index of ons-carousel-item changes and the carousel moves. This is because, when popPage is executed, setActiveIndex is always executed in onResize. Please move the carousel before running pushPage. __How to reproduce__ [__Demo link__](https://onsen.io/playground/?issue) - __HTML__ ```html Page 1 This is the first page. BLUE DARK ORANGE BLUE DARK ORANGE Push page Page 1 This is the second page. ``` - __JS__ ```javascript document.addEventListener('init', function(event) { var page = event.target; if (page.id === 'page1') { page.querySelector('#push-button').onclick = function() { document.querySelector('#myNavigator').pushPage('page2.html', {data: {title: 'Page 2'}}); }; } else if (page.id === 'page2') { page.querySelector('ons-toolbar .center').innerHTML = page.data.title; } }); ```