Sha256: ac7759e205afb09747d818350aeac6710488aa83dbeac09806ef4407786a036f
Contents?: true
Size: 1.05 KB
Versions: 11
Compression:
Stored size: 1.05 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, file: 'webm') %>" type="video/webm" /> <source src="<%= sufia.download_path(@generic_file, file: '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, file: 'ogg') %>" type="audio/ogg" /> <source src="<%= sufia.download_path(@generic_file, file: '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
11 entries across 11 versions & 1 rubygems