summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-12-13 15:45:39 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-12-13 15:45:39 +0100
commit90d3f91df7851b97f07b903f353497742f80d325 (patch)
tree19c69be5514940878f65799c814e9b44a1384676 /hyperkitty/templates
parenteab3d767b65982e1e04c5538c0d2827f26230fca (diff)
downloadhyperkitty-90d3f91df7851b97f07b903f353497742f80d325.tar.gz
hyperkitty-90d3f91df7851b97f07b903f353497742f80d325.tar.xz
hyperkitty-90d3f91df7851b97f07b903f353497742f80d325.zip
Fix quoting in the message view
Refs: #24
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r--hyperkitty/templates/thread.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/hyperkitty/templates/thread.html b/hyperkitty/templates/thread.html
index 295da84..8ea45d2 100644
--- a/hyperkitty/templates/thread.html
+++ b/hyperkitty/templates/thread.html
@@ -44,10 +44,8 @@
<script src="{{ STATIC_URL }}js/libs/jquery.expander.js"></script>
<script type="text/javascript">
$(document).ready(function() {
- $('div.email_body .quoted-switch a').click(function() {
- $(this).parent().next(".quoted-text").slideToggle('fast');
- return false;
- });
+ // hide quotes by default in the thread view
+ $('div.email_body .quoted-text').hide();
});
</script>