aboutsummaryrefslogtreecommitdiff
path: root/juick-www
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-07-28 01:53:16 +0300
committerGravatar Vitaly Takmazov2016-07-28 01:53:16 +0300
commit0083c4cf0acb81e976b892072cef672efdb47f7f (patch)
tree9df23ca58ba49195b20090466c052074012e3bcc /juick-www
parent99230387f797eeda2678649290ec271a0266a630 (diff)
www: final unfoldReply fix
Diffstat (limited to 'juick-www')
-rw-r--r--juick-www/src/main/static/scripts.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/juick-www/src/main/static/scripts.js b/juick-www/src/main/static/scripts.js
index 3ea35ed4..d7c3ffe9 100644
--- a/juick-www/src/main/static/scripts.js
+++ b/juick-www/src/main/static/scripts.js
@@ -367,7 +367,7 @@ function unfoldReply() {
if ((0 + anchor) > 0) {
var el = document.getElementById(anchor);
if (!el) { return }
- while (el.style.display !== 'block') {
+ while (el.style.display === 'none') {
el = el.previousElementSibling;
}
showMoreReplies(el);