We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#hash
1 parent 87843c0 commit fd3c089Copy full SHA for fd3c089
CHANGES.md
@@ -1,5 +1,11 @@
1
# Changes
2
3
+## v1.0.1 (in progress)
4
+
5
+### Bug fixes
6
7
+- When redirecting to another page, include the `#hash`
8
9
## v1.0.0 (2021-04-10)
10
11
### New features
mike/templates/redirect.html
@@ -7,7 +7,7 @@
<meta http-equiv="refresh" content="1; url={{href}}" />
</noscript>
<script>
- window.location.replace("{{href}}");
+ window.location.replace("{{href}}" + window.location.hash);
</script>
12
</head>
13
<body>
0 commit comments