aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2019-02-19 11:56:26 -0800
committerzotlabs <mike@macgirvin.com>2019-02-19 11:56:26 -0800
commit1ea9002fe8d04f0b2af32fa30a6aae9a0ffcf96c (patch)
treeff0ad5ced6c05f29ccfed3d9d2d7912e8e0784e9 /view
parent7d1c3920fd58e9fbba9fef6ad04420537f508d5b (diff)
parentcead10b9af6ff9d8b1bc702ca21d27af7c2112f0 (diff)
downloadvolse-hubzilla-1ea9002fe8d04f0b2af32fa30a6aae9a0ffcf96c.tar.gz
volse-hubzilla-1ea9002fe8d04f0b2af32fa30a6aae9a0ffcf96c.tar.bz2
volse-hubzilla-1ea9002fe8d04f0b2af32fa30a6aae9a0ffcf96c.zip
Merge branch 'dev' of https://framagit.org/zot/core into dev
Diffstat (limited to 'view')
-rw-r--r--view/js/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 4718fb98f..4e4431f33 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -400,12 +400,12 @@ function viewsrc(id) {
function showHideComments(id) {
if( $('#collapsed-comments-' + id).is(':visible')) {
$('#collapsed-comments-' + id + ' .autotime').timeago('dispose');
- $('#collapsed-comments-' + id).slideUp();
+ $('#collapsed-comments-' + id).hide();
$('#hide-comments-' + id).html(aStr.showmore);
$('#hide-comments-total-' + id).show();
} else {
$('#collapsed-comments-' + id + ' .autotime').timeago();
- $('#collapsed-comments-' + id).slideDown();
+ $('#collapsed-comments-' + id).show();
$('#hide-comments-' + id).html(aStr.showfewer);
$('#hide-comments-total-' + id).hide();
}