diff options
author | Killy | 2017-10-23 23:53:08 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-10-23 21:06:34 +0000 |
commit | 3a04d927c3f6b9209514ee9faa0d95bbaf77145f (patch) | |
tree | b9f85fce9a43ada672be5eba0e88e159d6763981 /juick-www/src/main/webapp/WEB-INF | |
parent | c76b7d7bab94688cf33f6c7fd81dbd444f39e54b (diff) |
www: comment form fixes
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/macros/tree.html | 2 | ||||
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/macros/tree.html b/juick-www/src/main/webapp/WEB-INF/views/macros/tree.html index cffddad8..380b3130 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/macros/tree.html +++ b/juick-www/src/main/webapp/WEB-INF/views/macros/tree.html @@ -38,7 +38,7 @@ {% endif %} {% if msg.VisitorCanComment %} · <a href="/post?body=%23{{ msg.mid }}/{{ msg.rid }}%20" class="a-thread-comment">{{ i18n("messages","reply.reply") }}</a></div> - <div class="msg-comment" style="display: none"></div> + <div class="msg-comment msg-comment-hidden"></div> {% elseif visitor.uid == 0 %} · <a href="#" class="a-login">{{ i18n("messages","reply.reply") }}</a></div> {% endif %} diff --git a/juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html b/juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html index dc373b20..a6e4522e 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html +++ b/juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html @@ -37,7 +37,7 @@ {% if msg.VisitorCanComment %} · <a href="/post?body=%23{{ msg.mid }}/{{ msg.rid }}%20" class="a-thread-comment">{{ i18n("messages","reply.reply") }}</a> </div> - <div class="msg-comment" style="display: none;"></div> + <div class="msg-comment msg-comment-hidden"></div> {% elseif visitor.uid == 0 %} · <a href="#" class="a-login">{{ i18n("messages","reply.reply") }}</a> </div> |