<div class = "user_icon" id = "comment_user_<%= i %>"><%= fa_icon("user") %></div>
<script>
$(function () {
// <!-- リプ一覧欄開閉 -->
$('#reply_lists_id_<%= i %>').hide();
<% if comment.replies.present? %>
$('#comment_user_<%= i %>').click(function () {
$('#reply_lists_id_<%= i %>').toggle();
// <!-- リプフォーム閉 -->
$('#reply_form_id_<%= i %>').hide();
<% else %>
$('#comment_user_<%= i %>').click(function () {
window.alert('リプライがありません。');
<% end %>
});
});
</script>