2015-10-15 15:05:41 +02:00
|
|
|
<template name="playClipButton">
|
2016-07-23 15:56:36 +02:00
|
|
|
<div id="{{this.id}}"
|
2016-11-07 15:01:03 +01:00
|
|
|
class="toolbarSectionButton rp-x-1 {{this.classes}} {{activeClass}} {{#if isPlaying}}active{{/if}} {{#if (disableButton)}}disabled{{/if}}"
|
2016-07-23 15:56:36 +02:00
|
|
|
title="{{this.title}}">
|
2016-08-23 23:00:06 +02:00
|
|
|
<div class="svgContainer">
|
|
|
|
|
{{#if isPlaying}}
|
|
|
|
|
<i class="fa fa-stop fa-fw"></i>
|
|
|
|
|
{{else}}
|
|
|
|
|
<i class="fa fa-play fa-fw"></i>
|
2016-07-23 15:56:36 +02:00
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
2016-08-23 23:00:06 +02:00
|
|
|
<div class="buttonLabel">
|
|
|
|
|
{{#if isPlaying}}Stop{{else}}Play{{/if}}
|
|
|
|
|
</div>
|
2016-07-23 15:56:36 +02:00
|
|
|
</div>
|
2016-08-23 23:00:06 +02:00
|
|
|
</template>
|