aboutsummaryrefslogtreecommitdiff
path: root/assets/js
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-06-07 21:50:14 -0400
committertdro <tdro@noreply.example.com>2022-06-07 21:50:14 -0400
commitf282dcf21b9024cc0c3a6f8b772aeb4ea8c4d3ec (patch)
tree6a13706783bb9b2348e02f9e3a4b212d2de1fe19 /assets/js
parentfd64030bb8378941b192f7c5c1701205652ee7e1 (diff)
downloadcanory-f282dcf21b9024cc0c3a6f8b772aeb4ea8c4d3ec.tar.gz
canory-f282dcf21b9024cc0c3a6f8b772aeb4ea8c4d3ec.tar.bz2
canory-f282dcf21b9024cc0c3a6f8b772aeb4ea8c4d3ec.zip
static/js/pager: Improve navigation loop
Final snap back for browsers that misalign on DOM content load. Remove hash on scroll to allow implicit back to top navigation.
Diffstat (limited to 'assets/js')
-rw-r--r--assets/js/index.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/assets/js/index.js b/assets/js/index.js
index 9f684bf..b284ce8 100644
--- a/assets/js/index.js
+++ b/assets/js/index.js
@@ -12,10 +12,13 @@
if (localStorage["settings"]) {
settings = JSON.parse(localStorage["settings"]);
}
- if (self.location.href.indexOf("#") >= 0) {
+ if (self.location.hash.length > 0) {
settings["pager"][url] = self.pageYOffset;
localStorage["settings"] = JSON.stringify(settings);
document.getElementById(location.hash.slice(1)).scrollIntoView();
+ self.addEventListener("load", function() {
+ document.getElementById(location.hash.slice(1)).scrollIntoView();
+ });
return;
}
if (settings["pager"][url] > 0) {
@@ -29,6 +32,9 @@
const currentPosition = self.pageYOffset;
settings["pager"][url] = currentPosition;
localStorage["settings"] = JSON.stringify(settings);
+ if (self.location.hash.length === 0) {
+ history.replaceState({}, document.title, window.location.href.split("#")[0]);
+ }
});
self.addEventListener("DOMContentLoaded", function() {
const up = document.getElementById("top");