diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-02-06 09:43:33 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-06 09:43:33 +0100 |
commit | 4a6d83a920825ab2d727e65fa168717275a3deac (patch) | |
tree | 1edf2337e3bc5514db5cf5880e88802cb61a9c1e /hyperkitty/templates | |
parent | 082145bbc2e1205deb22e4539f9bb447b586a3d1 (diff) | |
download | hyperkitty-4a6d83a920825ab2d727e65fa168717275a3deac.tar.gz hyperkitty-4a6d83a920825ab2d727e65fa168717275a3deac.tar.xz hyperkitty-4a6d83a920825ab2d727e65fa168717275a3deac.zip |
Fix a flickering effect when expanding threads
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/month_view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hyperkitty/templates/month_view.html b/hyperkitty/templates/month_view.html index 3484a2b..595a71b 100644 --- a/hyperkitty/templates/month_view.html +++ b/hyperkitty/templates/month_view.html @@ -119,7 +119,7 @@ slicePoint: 500, userCollapseText : '\nView Less', expandText : '\nView More', - afterExpand: function() { + beforeExpand: function() { $(this).removeClass("collapsed"); $(this).addClass("expanded"); }, |