Sha256: 8d3b3e52cab0c6ed2871e7019c7b726d65cf5a3d1bf87c638e9d801191b273fb
Contents?: true
Size: 1.09 KB
Versions: 12
Compression:
Stored size: 1.09 KB
Contents
<% if @generic_file.image? %> <%= render_download_icon "Download the full-sized image" %> <% elsif @generic_file.video? %> <video controls="controls" class="video-js vjs-default-skin" data-setup="{}" preload="auto"> <source src="<%= sufia.download_path(@generic_file, datastream_id: 'webm') %>" type="video/webm" /> <source src="<%= sufia.download_path(@generic_file, datastream_id: 'mp4') %>" type="video/mp4" /> Your browser does not support the video tag. </video> <% elsif @generic_file.audio? %> <audio controls="controls" class="audiojs" preload="auto"> <source src="<%= sufia.download_path(@generic_file, datastream_id: 'ogg') %>" type="audio/ogg" /> <source src="<%= sufia.download_path(@generic_file, datastream_id: 'mp3') %>" type="audio/mpeg" /> Your browser does not support the audio tag. </audio> <% elsif @generic_file.pdf?%> <%= render_download_icon "Download the full-sized PDF" %> <% elsif @generic_file.office_document?%> <%= render_download_icon "Download the full-sized Document" %> <% else %> <%= render_download_icon %> <% end %>
Version data entries
12 entries across 12 versions & 1 rubygems