server/apps/comments/js/templates/commentsmodifymenu.handlebars
Roeland Jago Douma e7443ee892
Move more comments to compiled handlebars
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-10-15 19:52:22 +02:00

14 lines
305 B
Handlebars

<ul>
{{#each items}}
<li>
<a href="#" class="menuitem action {{name}} permanent" data-action="{{name}}">
{{#if iconClass}}
<span class="icon {{iconClass}}"></span>
{{else}}
<span class="no-icon"></span>
{{/if}}
<span>{{displayName}}</span>
</a>
</li>
{{/each}}
</ul>