mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
27 lines
1.2 KiB
Text
27 lines
1.2 KiB
Text
<% if @protocolsio_too_big %>
|
|
$('#modal-import-json-protocol').modal('hide');
|
|
HelperModule.flashAlertMsg(' <%= t('my_modules.protocols.load_from_file_size_error',
|
|
size: Constants::FILE_MAX_SIZE_MB ) %>','danger');
|
|
<% elsif @protocolsio_invalid_file %>
|
|
$('#modal-import-json-protocol').modal('hide');
|
|
HelperModule.flashAlertMsg(' <%= t('my_modules.protocols.load_from_file_invalid_error') %>','danger');
|
|
<% 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');
|
|
$('.modal').on('hidden.bs.modal', function (e) {
|
|
if($('.modal').hasClass('in')) {
|
|
$('body').addClass('modal-open');
|
|
}
|
|
});
|
|
|
|
|
|
<% end %>
|