diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-05-31 16:32:34 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-05-31 16:32:34 +0200 |
commit | 30be2dbbcff4b01869bbb0120eb6679cc4b55cd0 (patch) | |
tree | 83752447db89f2961988869db0b898171cb528d1 /hyperkitty/templates/thread.html | |
parent | 02d94d437bd841cca240671558832400a470672e (diff) | |
download | hyperkitty-30be2dbbcff4b01869bbb0120eb6679cc4b55cd0.tar.gz hyperkitty-30be2dbbcff4b01869bbb0120eb6679cc4b55cd0.tar.xz hyperkitty-30be2dbbcff4b01869bbb0120eb6679cc4b55cd0.zip |
Navigate through unread messages with 'j' and 'k'
Diffstat (limited to 'hyperkitty/templates/thread.html')
-rw-r--r-- | hyperkitty/templates/thread.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html index 1e1f7ed..a25046e 100644 --- a/hyperkitty/templates/thread.html +++ b/hyperkitty/templates/thread.html @@ -78,9 +78,10 @@ <script type="text/javascript"> $(document).ready(function() { // Hide quotes by default in the thread view - fold_quotes() + fold_quotes(); // Load the replies update_thread_replies("{% url 'thread_replies' threadid=threadid mlist_fqdn=mlist.name %}?sort={{sort_mode}}&last_view={{last_view|date:'U'}}"); + setup_navkeys(); }); </script> |