diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-06-05 18:29:45 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-06-05 18:29:45 +0200 |
commit | e41cd396f324186115ae315d282b7f14a7ded7e3 (patch) | |
tree | 7a63069607a86024994166963c776bc66e179545 /hyperkitty/static | |
parent | 70b9094a3c82660912bf9de5911ebceaa05bb1d9 (diff) | |
download | hyperkitty-e41cd396f324186115ae315d282b7f14a7ded7e3.tar.gz hyperkitty-e41cd396f324186115ae315d282b7f14a7ded7e3.tar.xz hyperkitty-e41cd396f324186115ae315d282b7f14a7ded7e3.zip |
Open the last month menu on the overview page
Diffstat (limited to 'hyperkitty/static')
-rw-r--r-- | hyperkitty/static/js/hyperkitty.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hyperkitty/static/js/hyperkitty.js b/hyperkitty/static/js/hyperkitty.js index 3d695b9..90d94c8 100644 --- a/hyperkitty/static/js/hyperkitty.js +++ b/hyperkitty/static/js/hyperkitty.js @@ -486,7 +486,7 @@ function update_last_views(base_url) { function setup_months_list() { var current = $("#months-list li.current").parent().prev(); if (!current.length) { - current = false; // overview or search + current = 0; // overview or search } else { current = current.prevAll("h3").length; } |