23 lines
761 B
HTML
23 lines
761 B
HTML
<template name="toolbarSectionButton">
|
|
{{#if this.buttonTemplateName}}
|
|
{{>UI.dynamic template=this.buttonTemplateName data=this}}
|
|
{{else}}
|
|
<div id="{{this.id}}"
|
|
class="toolbarSectionButton rp-x-1 {{this.classes}} {{activeClass}} {{#if this.disabled}}disabled{{/if}}"
|
|
title="{{this.title}}">
|
|
<div class="svgContainer">
|
|
{{#if this.svgLink}}
|
|
<svg>
|
|
<use xlink:href={{this.svgLink}}></use>
|
|
</svg>
|
|
{{else}}
|
|
<i class={{iconClasses}}></i>
|
|
{{/if}}
|
|
</div>
|
|
<div class="buttonLabel">
|
|
{{this.title}}
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</template>
|