cms/app-client/app/templates/player.hbs
author nowmad@23.1.168.192.in-addr.arpa
Thu, 17 Dec 2015 12:14:31 +0100
changeset 65 5d5c30207e4c
parent 16 70e9a764d6d7
child 84 36f84e8f1ad5
permissions -rw-r--r--
add a html 5 audio player to play the current item clicked
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
     1
<div class="corpus-app-content">
65
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     2
  <audio id="audio-player" controls>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     3
    <source src="{{ currentItem.master }}" type="audio/ogg">
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     4
    <source src="{{ currentItem.master }}" type="audio/mpeg">
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     5
    <source src="{{ currentItem.master }}" type="audio/wav">
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     6
    Your browser does not support the audio element.
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     7
  </audio>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     8
  <p>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
     9
    Title: {{ currentItem.title }}
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
    10
  </p>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
    11
  <p>
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
    12
    Description: {{ currentItem.description }}
5d5c30207e4c add a html 5 audio player to play the current item clicked
nowmad@23.1.168.192.in-addr.arpa
parents: 16
diff changeset
    13
  </p>
16
70e9a764d6d7 add all tabs corresponding to each visualization, update name and structure and create a simple squeleton
nowmad@23.1.168.192.in-addr.arpa
parents:
diff changeset
    14
</div>