Files
nairobi/app/views/comments/_responses_count.html.erb
Senén Rodero Rodríguez 31c0b4360d Improve the way to toggle comment responses
Co-Authored-By: Javi Martín <javim@elretirao.net>
2020-05-26 13:20:26 +02:00

10 lines
396 B
Plaintext

<% if count > 0 %>
<%= link_to "", class: "js-toggle-children relative" do %>
<span class="far"></span>
<span class="show-children"><%= t("comments.comment.responses_show", count: count) %></span>
<span class="collapse-children"><%= t("comments.comment.responses_collapse", count: count) %></span>
<% end %>
<% else %>
<%= t("comments.comment.responses", count: 0) %>
<% end %>