diff options
author | marijus <mario@mariovavti.com> | 2014-06-15 16:00:27 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-06-15 16:00:27 +0200 |
commit | 0b4e1715dec56a9129b1310482ac91a0e86ecc91 (patch) | |
tree | a1ea900fcef4bb74ef3cb03703f159366f5ccaf2 /view/js/main.js | |
parent | 2d6a1795b7ae1fc5652798347d958d7ae71cb763 (diff) | |
download | volse-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/main.js')
-rw-r--r-- | view/js/main.js | 2 |
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(); } } |