Added space after <% and before %> in order to maintain consistency in the ERB code. Review of PR.

This commit is contained in:
iagirre
2017-09-13 17:44:11 +02:00
parent 2621d2694b
commit fb5fb866b5

View File

@@ -93,7 +93,7 @@
</div> </div>
<% end %> <% end %>
</li> </li>
<%unless child_comments_of(comment).empty?%> <% unless child_comments_of(comment).empty? %>
<li> <li>
<ul id="<%= dom_id(comment) %>_children" class="no-bullet comment-children"> <ul id="<%= dom_id(comment) %>_children" class="no-bullet comment-children">
<% child_comments_of(comment).each do |child| %> <% child_comments_of(comment).each do |child| %>
@@ -103,6 +103,6 @@
<% end %> <% end %>
</ul> </ul>
</li> </li>
<%end%> <% end %>
</ul> </ul>
<% end %> <% end %>