cms/app-client/app/templates/player.hbs
author nowmad@23.1.168.192.in-addr.arpa
Thu, 17 Dec 2015 12:22:17 +0100
changeset 70 ad554d876c81
parent 65 5d5c30207e4c
child 84 36f84e8f1ad5
permissions -rw-r--r--
remove model to use the general one the application fetch on the first load

<div class="corpus-app-content">
  <audio id="audio-player" controls>
    <source src="{{ currentItem.master }}" type="audio/ogg">
    <source src="{{ currentItem.master }}" type="audio/mpeg">
    <source src="{{ currentItem.master }}" type="audio/wav">
    Your browser does not support the audio element.
  </audio>
  <p>
    Title: {{ currentItem.title }}
  </p>
  <p>
    Description: {{ currentItem.description }}
  </p>
</div>