Skip to content

Commit

Permalink
hack
Browse files Browse the repository at this point in the history
  • Loading branch information
fulldecent committed May 15, 2023
1 parent bf79460 commit dabb495
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,10 @@ <h6>Other</h6>
if (window.location.hash.substr(1)) { // Page is loaded with #... fragment (in QR codes)
$("#quick-links-general").hide();
$(window.location.hash).removeClass("d-none");
// hack to make #hours (and only #hours) work like #hour
if (window.location.hash == "#hours") {
$("#hour").removeClass("d-none");
}
}
});
</script>
Expand Down

0 comments on commit dabb495

Please sign in to comment.