aboutsummaryrefslogtreecommitdiff
path: root/client/html/users_page.tpl
diff options
context:
space:
mode:
authorrr-2016-06-11 09:59:06 +0200
committerrr-2016-06-11 17:36:02 +0200
commit0842d90ca2cebda8d85a39f504e1f7cd79a167d1 (patch)
tree62678b0598e5eabaf287f6fef096b83a80704809 /client/html/users_page.tpl
parentabd679888af5dd32ecc2896ff4dddd3eed85f3d7 (diff)
client/general: ditch underscore for loops
Diffstat (limited to 'client/html/users_page.tpl')
-rw-r--r--client/html/users_page.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/html/users_page.tpl b/client/html/users_page.tpl
index 6c145c8..a906828 100644
--- a/client/html/users_page.tpl
+++ b/client/html/users_page.tpl
@@ -1,6 +1,6 @@
<div class='user-list'>
<ul><!--
- --><% _.each(ctx.results, user => { %><!--
+ --><% for (let user of ctx.results) { %><!--
--><li>
<div class='wrapper'>
<a class='image' href='/user/<%= user.name %>'><%= ctx.makeThumbnail(user.avatarUrl) %></a>
@@ -11,7 +11,7 @@
</div>
</div>
</li><!--
- --><% }) %><!--
+ --><% } %><!--
--><%= ctx.makeFlexboxAlign() %><!--
--></ul>
</div>

© 2015 - 2026 Jakob L. Kreuze