We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d746206 commit 8384dd5Copy full SHA for 8384dd5
lib/resources/script.js
@@ -78,13 +78,10 @@ function initScrollSave() {
78
// a long time but not moved by re-saving its position every hour.
79
leftSidebar.onscroll = saveLeftScroll;
80
leftSidebar.addEventListener("scroll", saveLeftScroll, true);
81
- setInterval(saveLeftScroll, 3600000 * 1);
82
mainContent.onscroll = saveMainContentScroll;
83
mainContent.addEventListener("scroll", saveMainContentScroll, true);
84
- setInterval(saveMainContentScroll, 3600000 * 1);
85
rightSidebar.onscroll = saveRightScroll;
86
rightSidebar.addEventListener("scroll", saveRightScroll, true);
87
- setInterval(saveRightScroll, 3600000 * 1);
88
}
89
90
function initSearch(name) {
0 commit comments