aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/static/scripts.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-07-29 11:28:51 +0300
committerGravatar Vitaly Takmazov2016-07-29 11:28:51 +0300
commit17853c71d7cc82d33f42bdef492a15ffcf08bd35 (patch)
tree4038e10e1985a812542e7733beec23c687fffb86 /juick-www/src/main/static/scripts.js
parentadf998977204a69b0dc240792d3305c4bd5989c3 (diff)
www: fix tree unfolding
Diffstat (limited to 'juick-www/src/main/static/scripts.js')
-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 a40ed57a..c46eb540 100644
--- a/juick-www/src/main/static/scripts.js
+++ b/juick-www/src/main/static/scripts.js
@@ -368,7 +368,7 @@ function unfoldReply() {
while (el.style.display === 'none') {
el = el.previousElementSibling;
}
- showMoreReplies(el, anchor);
+ showMoreReplies(el, el.getAttribute('id'));
window.location.replace(window.location.hash);
}
}