diff options
author | Andreas Hubel | 2017-10-12 11:43:10 +0200 |
---|---|---|
committer | Andreas Hubel | 2017-10-12 11:43:10 +0200 |
commit | 6ddff7317d88ece92912eff44fa6fbfa753e0d98 (patch) | |
tree | 7eee7a2d5317b336c3ea9de808ebfbd0eff02b00 /assets | |
parent | c3a490b6d4bc30f854139ec3a2e5f8b20c7f2492 (diff) |
schedule: bugfix for new tab order
Diffstat (limited to '')
-rw-r--r-- | assets/js/lustiges-script.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/js/lustiges-script.js b/assets/js/lustiges-script.js index 3af4250..c14de15 100644 --- a/assets/js/lustiges-script.js +++ b/assets/js/lustiges-script.js @@ -211,7 +211,7 @@ $(function() { clearInterval(updateInterval); } - if(window.location.hash == '#schedule' || window.location.href.indexOf('/schedule') != -1) + if(window.location.hash == '' || window.location.hash == '#schedule' || window.location.href.indexOf('/schedule') != -1) on(); // trigger when a tab was changed |