2016-06-07 19:09:47 +02:00
|
|
|
<template name="toolbarSectionButton">
|
2016-06-29 22:39:40 +02:00
|
|
|
<div id="{{this.id}}" class="toolbarSectionButton rp-x-1 {{this.classes}} {{activeClass}}" title="{{this.title}}">
|
2016-06-07 19:09:47 +02:00
|
|
|
<div class="svgContainer">
|
2016-07-22 18:23:36 +02:00
|
|
|
{{ #if this.svgLink }}
|
2016-06-07 19:09:47 +02:00
|
|
|
<svg>
|
2016-06-29 22:39:40 +02:00
|
|
|
<use xlink:href={{this.svgLink}}></use>
|
2016-06-07 19:09:47 +02:00
|
|
|
</svg>
|
2016-07-22 18:23:36 +02:00
|
|
|
{{ else }}
|
|
|
|
|
<i class={{iconClasses}}></i>
|
|
|
|
|
{{ /if }}
|
2016-06-07 19:09:47 +02:00
|
|
|
</div>
|
|
|
|
|
<div class="buttonLabel">
|
2016-06-29 22:39:40 +02:00
|
|
|
{{this.title}}
|
2016-06-07 19:09:47 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-06-13 20:51:05 +02:00
|
|
|
</template>
|