12 lines
539 B
HTML
12 lines
539 B
HTML
<template name="toolbarGroupButton">
|
|
<div id="toolbarGroupButton" class="btn-group">
|
|
<button class="btn btn-secondary btn-sm dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="{{id}}" title="{{title}}">
|
|
<i class="{{groupIcon}}"></i>
|
|
</button>
|
|
<div class="dropdown-menu">
|
|
{{#each tools}}
|
|
<div><a class="dropdown-item" href="#">{{> simpleToolbarButton}}</a></div>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
</template> |