ContentViewSwitcherTemplate.html 517 B

123456789101112131415161718
  1. <div class="contentViewSwitcher">
  2. <table role="presentation">
  3. <tbody>
  4. {{~it.rows :row:index}}
  5. <tr role="button" tabindex="0" class="rootSelector{{=index}}">
  6. <td class="icon">
  7. <svg class="svgIcon">
  8. <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="{{=row.svgIcon}}"></use>
  9. </svg>
  10. </td>
  11. <td class="name">
  12. <div title="{{=_.escape(row.defaultName)}}" class="active">{{=_.escape(row.defaultName)}}</div>
  13. </td>
  14. </tr>
  15. {{~}}
  16. </tbody>
  17. </table>
  18. </div>