Sha256: 8cca53a0db293efe2b2833b7ff88d850416dad31bdbf59ed6309f0d522e4a6fd

Contents?: true

Size: 1.22 KB

Versions: 10

Compression:

Stored size: 1.22 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 },
                  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

10 entries across 10 versions & 1 rubygems

Version Path
hyrax-3.6.0 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-3.5.0 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-4.0.0.beta2 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-3.4.2 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-4.0.0.beta1 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-3.4.1 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-3.4.0 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-3.3.0 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-3.2.0 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-3.1.0 app/views/hyrax/file_sets/media_display/_audio.html.erb