Skip to content

Commit 39892bf

Browse files
committedJul 30, 2020
8250779: Anchor is ignored when reloading a page in Chrome
Reviewed-by: prappo
1 parent 9798a08 commit 39892bf

File tree

1 file changed

+9
-7
lines changed
  • src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources

1 file changed

+9
-7
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources/script.js

+9-7
Original file line numberDiff line numberDiff line change
@@ -103,24 +103,26 @@ function indexFilesLoaded() {
103103
}
104104

105105
// Workaround for scroll position not being included in browser history (8249133)
106-
document.addEventListener("DOMContentLoaded", function() {
106+
document.addEventListener("DOMContentLoaded", function(e) {
107107
var contentDiv = document.querySelector("div.flex-content");
108-
window.onpopstate = function(e) {
108+
window.addEventListener("popstate", function(e) {
109109
if (e.state !== null) {
110110
contentDiv.scrollTop = e.state;
111111
}
112-
}
113-
window.onhashchange = function(e) {
112+
});
113+
window.addEventListener("hashchange", function(e) {
114114
history.replaceState(contentDiv.scrollTop, document.title);
115-
}
116-
contentDiv.onscroll = function(e) {
115+
});
116+
contentDiv.addEventListener("scroll", function(e) {
117117
var timeoutID;
118118
if (!timeoutID) {
119119
timeoutID = setTimeout(function() {
120120
history.replaceState(contentDiv.scrollTop, document.title);
121121
timeoutID = null;
122122
}, 100);
123123
}
124+
});
125+
if (!location.hash) {
126+
history.replaceState(contentDiv.scrollTop, document.title);
124127
}
125-
history.replaceState(contentDiv.scrollTop, document.title);
126128
});

0 commit comments

Comments
 (0)
Please sign in to comment.