summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/thread.html
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-12-13 15:07:43 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-12-13 15:07:43 +0100
commiteab3d767b65982e1e04c5538c0d2827f26230fca (patch)
tree7e881cf8ec8ba8962dda19e135442d621262c55c /hyperkitty/templates/thread.html
parenta9d22e8e9cbe51ae353b4e2f68ff635e9cf6d844 (diff)
downloadhyperkitty-eab3d767b65982e1e04c5538c0d2827f26230fca.tar.gz
hyperkitty-eab3d767b65982e1e04c5538c0d2827f26230fca.tar.xz
hyperkitty-eab3d767b65982e1e04c5538c0d2827f26230fca.zip
Improve the quoting style
Refs: #24
Diffstat (limited to 'hyperkitty/templates/thread.html')
-rw-r--r--hyperkitty/templates/thread.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html
index 3ac059d..295da84 100644
--- a/hyperkitty/templates/thread.html
+++ b/hyperkitty/templates/thread.html
@@ -44,8 +44,8 @@
<script src="{{ STATIC_URL }}js/libs/jquery.expander.js"></script>
<script type="text/javascript">
$(document).ready(function() {
- $('div.email_body a.quoted-switch').click(function() {
- $(this).next(".quoted-text").toggle();
+ $('div.email_body .quoted-switch a').click(function() {
+ $(this).parent().next(".quoted-text").slideToggle('fast');
return false;
});
});