slight optimization
This commit is contained in:
parent
6ef218055e
commit
e8c703bf99
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@
|
||||||
</a>
|
</a>
|
||||||
<% } else if (contentN[0] == 'link') { %>
|
<% } else if (contentN[0] == 'link') { %>
|
||||||
<a class='link' href='<%= contentN[1] %>'><%= contentN[1] %></a>
|
<a class='link' href='<%= contentN[1] %>'><%= contentN[1] %></a>
|
||||||
<% } else if (contentN[0].replaceAll(' ','').length > 0) { %>
|
<% } else if (contentN[0][0] != ' ') { %>
|
||||||
<span class='commentbox'><%= contentN[0] %></span>
|
<span class='commentbox'><%= contentN[0] %></span>
|
||||||
<% } } %>
|
<% } } %>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue