cms/app-client/app/templates/components/player-component.hbs
author nowmad@nowmads-macbook-pro.local
Wed, 20 Jan 2016 13:04:27 +0100
changeset 89 89be68e13215
parent 87 24fef043ea0b
child 91 acfeddc7821d
permissions -rw-r--r--
fix a problem after reloading the page the date tags couldn't be deleted

<div class="audio-wrapper">
	<span class="audio-controls fa fa-backward" {{action 'prevNextSong' 'previous'}}></span>
	<div id="audio_player">
		<span id="action_play" class="btn btn_play" {{action 'tooglePlay'}}>Play</span>
		<div class="background"></div>
		<div class="progress">
			<div class="slice">
				<div class="pie"></div>
			</div>
		</div>
	</div>
	<span class="audio-controls fa fa-forward fa-5" {{action 'prevNextSong' 'next'}}></span>
</div>

<p class="duration">
	{{currentTime}} / {{duration}}
</p>