aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-06-15 16:00:27 +0200
committermarijus <mario@mariovavti.com>2014-06-15 16:00:27 +0200
commit0b4e1715dec56a9129b1310482ac91a0e86ecc91 (patch)
treea1ea900fcef4bb74ef3cb03703f159366f5ccaf2 /view/js
parent2d6a1795b7ae1fc5652798347d958d7ae71cb763 (diff)
downloadvolse-hubzilla-0b4e1715dec56a9129b1310482ac91a0e86ecc91.tar.gz
volse-hubzilla-0b4e1715dec56a9129b1310482ac91a0e86ecc91.tar.bz2
volse-hubzilla-0b4e1715dec56a9129b1310482ac91a0e86ecc91.zip
move hide-comments to center and change its appearence a little
Diffstat (limited to 'view/js')
-rw-r--r--view/js/main.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 19af9c2ff..267833ed8 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -136,10 +136,12 @@
if( $('#collapsed-comments-' + id).is(':visible')) {
$('#collapsed-comments-' + id).hide();
$('#hide-comments-' + id).html(aStr['showmore']);
+ $('#hide-comments-total-' + id).show();
}
else {
$('#collapsed-comments-' + id).show();
$('#hide-comments-' + id).html(aStr['showfewer']);
+ $('#hide-comments-total-' + id).hide();
}
}