// "data-turbo-permanent" 요소의 스크롤 위치를 저장합니다. // 다음 페이지가 로드될 때 스크롤 위치를 복원합니다. (function () { var scrollPositions = {}; addEventListener('turbo:before-render', function () { document.querySelectorAll('[data-turbo-permanent]').forEach(function (element) { scrollPositions[element.id] = element.scrollTop; }); }); addEventListener('turbo:render', function () { document.querySelectorAll('[data-turbo-permanent]').forEach(function (element) { element.scrollTop = scrollPositions[element.id]; }); }); })();

AltStyle によって変換されたページ (->オリジナル) /