diff options
| author | rr- | 2016-06-11 09:59:06 +0200 |
|---|---|---|
| committer | rr- | 2016-06-11 17:36:02 +0200 |
| commit | 0842d90ca2cebda8d85a39f504e1f7cd79a167d1 (patch) | |
| tree | 62678b0598e5eabaf287f6fef096b83a80704809 /client/html/users_page.tpl | |
| parent | abd679888af5dd32ecc2896ff4dddd3eed85f3d7 (diff) | |
client/general: ditch underscore for loops
Diffstat (limited to 'client/html/users_page.tpl')
| -rw-r--r-- | client/html/users_page.tpl | 4 |
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> |