From 70b9094a3c82660912bf9de5911ebceaa05bb1d9 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Mon, 3 Jun 2013 20:57:21 +0200 Subject: Add a tooltip for the navigation hotkeys --- hyperkitty/static/js/hyperkitty.js | 1 + 1 file changed, 1 insertion(+) (limited to 'hyperkitty/static/js/hyperkitty.js') diff --git a/hyperkitty/static/js/hyperkitty.js b/hyperkitty/static/js/hyperkitty.js index e43f766..3d695b9 100644 --- a/hyperkitty/static/js/hyperkitty.js +++ b/hyperkitty/static/js/hyperkitty.js @@ -290,6 +290,7 @@ function setup_unreadnavbar(element) { element.find(".prevunread").click(function(e) { e.preventDefault(); scroll(-1); }); $(document).bind("keydown", "j", function(e) { scroll(1); }); $(document).bind("keydown", "k", function(e) { scroll(-1); }); + element.find("a").tooltip(); element.animate({height: "show"}, 700); } -- cgit