diff options
author | marijus <mario@mariovavti.com> | 2014-03-10 17:17:49 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-03-10 17:17:49 +0100 |
commit | 34fd387438f5f3d06b0a1c26d5c7ca5c1f5bd270 (patch) | |
tree | 5cb0c63a7eb5b141975b9a06f58e554555b3209b /view/theme/redbasic/js/redbasic.js | |
parent | a5cb47c3d2a137f9823da26d03126f987d7fcecf (diff) | |
download | volse-hubzilla-34fd387438f5f3d06b0a1c26d5c7ca5c1f5bd270.tar.gz volse-hubzilla-34fd387438f5f3d06b0a1c26d5c7ca5c1f5bd270.tar.bz2 volse-hubzilla-34fd387438f5f3d06b0a1c26d5c7ca5c1f5bd270.zip |
this commit is an attempt to make conv items better scalable on smaller screens. also save some horizontal space.
Diffstat (limited to 'view/theme/redbasic/js/redbasic.js')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 7e957a4f4..4bc94287d 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -9,10 +9,10 @@ function cmtBbOpen(comment, id) { } function cmtBbClose(comment, id) { -// if($(comment).hasClass('comment-edit-text-empty')) { -// $(".comment-edit-bb-" + id).hide(); -// return true; -// } + if($(comment).hasClass('comment-edit-text-empty')) { + $(".comment-edit-bb-" + id).hide(); + return true; + } return false; } |