diff options
Diffstat (limited to 'juick-www')
-rw-r--r-- | juick-www/src/main/static/scripts.js | 2 |
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); |