mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
13 lines
488 B
Text
13 lines
488 B
Text
<%= link_to download_asset_path(asset),
|
|
class: 'file-preview-link',
|
|
id: "modal_link#{asset.id}",
|
|
data: {
|
|
id: true,
|
|
no_turbolink: true,
|
|
status: asset.file.processing? ? 'asset-loading' : 'asset-present',
|
|
'present-url': file_present_asset_path(asset.id),
|
|
'preview-url': asset_file_preview_path(asset)
|
|
} do %>
|
|
<%= render partial: "shared/asset_link_placeholder.html.erb",
|
|
locals: { asset: asset, display_image_tag: display_image_tag } %>
|
|
<% end %>
|