9 lines
395 B
HTML
9 lines
395 B
HTML
<template name="playClipButton">
|
|
<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">
|
|
{{ #if isPlaying }}
|
|
<span class="fa fa-stop"></span>
|
|
{{ else }}
|
|
<span class="fa fa-play"></span>
|
|
{{ /if }}
|
|
</button>
|
|
</template> |