Sha256: dcedf62e95e10ced87238b63711baec942e9548391d89505c34c571feb77a03f

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

<% if Hyrax.config.display_media_download_link? %>
    <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" />
        Your browser does not support the audio tag.
      </audio>
      <%= link_to t('hyrax.file_set.show.downloadable_content.audio_link'),
                  hyrax.download_path(file_set),
                  data: { turbolinks: false, 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" />
        Your browser does not support the audio tag.
      </audio>
    </div>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hyrax-2.1.0 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-2.1.0.rc4 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-2.1.0.rc3 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-2.1.0.rc2 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-2.1.0.rc1 app/views/hyrax/file_sets/media_display/_audio.html.erb
hyrax-2.1.0.beta2 app/views/hyrax/file_sets/media_display/_audio.html.erb