Show Thursday schedule by default
This commit is contained in:
parent
e0412f895f
commit
72bdba3bd4
1 changed files with 7 additions and 2 deletions
|
@ -8793,8 +8793,13 @@
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$('.tab-pane').hide();
|
$('.tab-pane').hide();
|
||||||
$(window.location.hash).show();
|
if (window.location.hash) {
|
||||||
|
$(window.location.hash).show();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$('#thursday').show();
|
||||||
|
}
|
||||||
$(".nav-item").click(function(event) {
|
$(".nav-item").click(function(event) {
|
||||||
// This updates the window location fragment so that
|
// This updates the window location fragment so that
|
||||||
// the URL bar is updated, and so that when you go
|
// the URL bar is updated, and so that when you go
|
||||||
|
|
Loading…
Reference in a new issue