mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 17:09:45 +08:00
13 lines
765 B
Text
13 lines
765 B
Text
|
|
<% if @protocolsio_too_big %>
|
|
alert('<%= I18n.t('my_modules.protocols.load_from_file_size_error',
|
|
size: Constants::FILE_MAX_SIZE_MB ) %>');
|
|
<% else %>
|
|
$('#modal-import-json-protocol').modal('hide');
|
|
<% if remotipart_submitted? %> <%# a workaround to a bug with remotipart, that caused alot of headache, courtesy of github.com/dhampik %>
|
|
$('#protocolsio-preview-modal-target').html("<%= j "#{render(:partial => 'protocols/import_export/import_json_protocol_preview_modal')}" %>");
|
|
<% else %>
|
|
$('#protocolsio-preview-modal-target').html("<%= j render(:partial => 'protocols/import_export/import_json_protocol_preview_modal') %>");
|
|
<% end %>
|
|
$('#modal-import-json-protocol-preview').modal('show');
|
|
<% end %>
|