2015-10-15 15:05:41 +02:00
|
|
|
<template name="playClipButton">
|
2016-03-17 12:08:46 +01:00
|
|
|
<button id="playClip" type="button" class="imageViewerCommand btn btn-sm btn-default"
|
|
|
|
|
data-container="body" data-toggle="tooltip" data-placement="bottom" title="Play/Stop Clip">
|
2015-10-15 15:05:41 +02:00
|
|
|
{{ #if isPlaying }}
|
|
|
|
|
<span class="fa fa-stop"></span>
|
|
|
|
|
{{ else }}
|
|
|
|
|
<span class="fa fa-play"></span>
|
|
|
|
|
{{ /if }}
|
|
|
|
|
</button>
|
2016-03-17 12:08:46 +01:00
|
|
|
<button id="toggleCineDialog" type="button" class="imageViewerCommand btn btn-sm btn-default"
|
|
|
|
|
data-container="body" data-toggle="tooltip" data-placement="bottom" title="Toggle CINE Dialog">
|
|
|
|
|
<span class="fa fa-youtube-play"></span>
|
|
|
|
|
</button>
|
2015-10-15 15:05:41 +02:00
|
|
|
</template>
|