diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-10-04 12:02:52 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-10-04 12:02:52 +0200 |
commit | cd1a2d5f2ec738ab2f17c86dcabe8733a682aa4f (patch) | |
tree | a00aafaafbe919364ff8c9882bc5cf26935fb29a /hyperkitty/templates/thread.html | |
parent | 5f9c7c8bba6db94f45cf0d0f2ca679ee8a0a3a92 (diff) | |
download | hyperkitty-cd1a2d5f2ec738ab2f17c86dcabe8733a682aa4f.tar.gz hyperkitty-cd1a2d5f2ec738ab2f17c86dcabe8733a682aa4f.tar.xz hyperkitty-cd1a2d5f2ec738ab2f17c86dcabe8733a682aa4f.zip |
Improve attachments display
Diffstat (limited to 'hyperkitty/templates/thread.html')
-rw-r--r-- | hyperkitty/templates/thread.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html index 2730db9..a3d8c8b 100644 --- a/hyperkitty/templates/thread.html +++ b/hyperkitty/templates/thread.html @@ -110,7 +110,11 @@ alert('You need to login in order to add tag'); {% endif %} }); - + + $("ul.email_info li.attachments ul.attachments-list").hide(); + $("ul.email_info li.attachments > a").click(function() { + $(this).next("ul").fadeToggle('fast'); + }); }); </script> |