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 Original file line number Diff line number Diff line change @@ -103,24 +103,26 @@ function indexFilesLoaded() {
103
103
}
104
104
105
105
// Workaround for scroll position not being included in browser history (8249133)
106
- document . addEventListener ( "DOMContentLoaded" , function ( ) {
106
+ document . addEventListener ( "DOMContentLoaded" , function ( e ) {
107
107
var contentDiv = document . querySelector ( "div.flex-content" ) ;
108
- window . onpopstate = function ( e ) {
108
+ window . addEventListener ( "popstate" , function ( e ) {
109
109
if ( e . state !== null ) {
110
110
contentDiv . scrollTop = e . state ;
111
111
}
112
- }
113
- window . onhashchange = function ( e ) {
112
+ } ) ;
113
+ window . addEventListener ( "hashchange" , function ( e ) {
114
114
history . replaceState ( contentDiv . scrollTop , document . title ) ;
115
- }
116
- contentDiv . onscroll = function ( e ) {
115
+ } ) ;
116
+ contentDiv . addEventListener ( "scroll" , function ( e ) {
117
117
var timeoutID ;
118
118
if ( ! timeoutID ) {
119
119
timeoutID = setTimeout ( function ( ) {
120
120
history . replaceState ( contentDiv . scrollTop , document . title ) ;
121
121
timeoutID = null ;
122
122
} , 100 ) ;
123
123
}
124
+ } ) ;
125
+ if ( ! location . hash ) {
126
+ history . replaceState ( contentDiv . scrollTop , document . title ) ;
124
127
}
125
- history . replaceState ( contentDiv . scrollTop , document . title ) ;
126
128
} ) ;
You can’t perform that action at this time.
0 commit comments