You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

commentsmodifymenu.handlebars 305B

1234567891011121314
  1. <ul>
  2. {{#each items}}
  3. <li>
  4. <a href="#" class="menuitem action {{name}} permanent" data-action="{{name}}">
  5. {{#if iconClass}}
  6. <span class="icon {{iconClass}}"></span>
  7. {{else}}
  8. <span class="no-icon"></span>
  9. {{/if}}
  10. <span>{{displayName}}</span>
  11. </a>
  12. </li>
  13. {{/each}}
  14. </ul>