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 | ec25f22ade2ad941ffccaacd6e9ef9df71552757 (patch) | |
| tree | a00aafaafbe919364ff8c9882bc5cf26935fb29a /hyperkitty/templates/thread.html | |
| parent | 99d41751c8e8718e83111fa591c08950eec4a5bf (diff) | |
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> |
