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