Sha256: 8c0d7de802292539fcc8944af412fdf8ce86e4ffa4166ac55f43493b2b69f06b

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

<% if Hyrax.config.display_media_download_link? %>
    <div>
      <h2 class="sr-only"><%= t('hyrax.file_set.show.downloadable_content.heading') %></h2>
      <video controls="controls" class="video-js vjs-default-skin" style="width:100%" data-setup="{}" controlsList="nodownload" preload="auto">
        <source src="<%= hyrax.download_path(file_set, file: 'webm') %>" type="video/webm" />
        <source src="<%= hyrax.download_path(file_set, file: 'mp4') %>" type="video/mp4" />
        Your browser does not support the video tag.
      </video>
      <%= link_to t('hyrax.file_set.show.downloadable_content.video_link'),
                  hyrax.download_path(file_set),
                  data: { turbolinks: false, label: file_set.id },
                  target: :_blank,
                  id: "file_download" %>
    </div>
<% else %>
    <div>
      <video controls="controls" class="video-js vjs-default-skin" style="width:100%" data-setup="{}" controlsList="nodownload" preload="auto">
        <source src="<%= hyrax.download_path(file_set, file: 'webm') %>" type="video/webm" />
        <source src="<%= hyrax.download_path(file_set, file: 'mp4') %>" type="video/mp4" />
        Your browser does not support the video tag.
      </video>
    </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/_video.html.erb
hyrax-2.1.0.rc4 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-2.1.0.rc3 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-2.1.0.rc2 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-2.1.0.rc1 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-2.1.0.beta2 app/views/hyrax/file_sets/media_display/_video.html.erb