Sha256: a498ccca4e331b6701e8eea5c87370a4774ec1787ca6794da265ae907c5e2d75

Contents?: true

Size: 1.3 KB

Versions: 5

Compression:

Stored size: 1.3 KB

Contents

<% if display_media_download_link?(file_set: file_set) %>
  <div>
      <h2 class="sr-only"><%= t('hyrax.file_set.show.downloadable_content.heading') %></h2>
      <audio controls="controls" class="audiojs" style="width:100%" controlsList="nodownload" preload="auto">
        <source src="<%= hyrax.download_path(file_set, file: 'ogg') %>" type="audio/ogg" />
        <source src="<%= hyrax.download_path(file_set, file: 'mp3') %>" type="audio/mpeg" />
        <%= t('hyrax.file_set.show.downloadable_content.audio_tag_not_supported') %>
      </audio>
      <%= link_to t('hyrax.file_set.show.downloadable_content.audio_link'),
                  hyrax.download_path(file_set),
                  data: { label: file_set.id, work_id: @presenter.id, collection_ids: @presenter.member_of_collection_ids },
                  target: :_blank,
                  id: "file_download" %>
    </div>
<% else %>
    <div>
      <audio controls="controls" class="audiojs" style="width:100%" controlsList="nodownload" preload="auto">
        <source src="<%= hyrax.download_path(file_set, file: 'ogg') %>" type="audio/ogg" />
        <source src="<%= hyrax.download_path(file_set, file: 'mp3') %>" type="audio/mpeg" />
        <%= t('hyrax.file_set.show.downloadable_content.audio_tag_not_supported') %>
      </audio>
    </div>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hyrax-5.0.0.rc1 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-4.0.0 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-4.0.0.rc3 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-4.0.0.rc2 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-4.0.0.rc1 app/views/hyrax/file_sets/media_display/_audio.html.erb