mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-20 08:01:47 +08:00
20 lines
674 B
Text
20 lines
674 B
Text
<% if edit_supported %>
|
|
<%= link_to edit_asset_url(id: asset),
|
|
id: 'wopi_file_edit_button',
|
|
class: 'btn btn-light',
|
|
target: '_blank' do %>
|
|
<i class="sn-icon sn-icon-<%= sn_icon_for(asset) %>"></i>
|
|
<%= wopi_button_text(asset, 'edit') %>
|
|
<% end %>
|
|
<% else %>
|
|
<%= content_tag :button, '',
|
|
id: 'wopi_file_edit_button',
|
|
class: 'btn btn-light cursor-not-allowed',
|
|
style: "pointer-events: all;",
|
|
target: '_blank',
|
|
title: title,
|
|
disabled: true do %>
|
|
<i class="sn-icon sn-icon-<%= sn_icon_for(asset) %>"></i>
|
|
<%= wopi_button_text(asset, 'edit') %>
|
|
<% end %>
|
|
<% end %>
|