mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
27 lines
854 B
Text
27 lines
854 B
Text
|
<html>
|
||
|
<head>
|
||
|
<%= javascript_include_tag 'i18n_bundle' %>
|
||
|
<%= stylesheet_link_tag 'sn_icon_font' %>
|
||
|
<%= stylesheet_link_tag 'tailwind' %>
|
||
|
<%= stylesheet_link_tag 'open_vector_editor' %>
|
||
|
<style>
|
||
|
body {
|
||
|
margin: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="open-vector-editor" data-behaviour="vue">
|
||
|
<open-vector-editor
|
||
|
file-url="<%= @file_url %>"
|
||
|
file-name="<%= @file_name %>"
|
||
|
parent-id="<%= @parent.id %>"
|
||
|
parent-type="<%= @parent.class.name %>"
|
||
|
update-url="<%= @asset ? gene_sequence_asset_url(@asset) : gene_sequence_assets_url(parent_type: params[:parent_type], parent_id: params[:parent_id]) %>"
|
||
|
/>
|
||
|
</div>
|
||
|
<%= javascript_include_tag 'open_vector_editor' %>
|
||
|
<%= javascript_include_tag 'vue_components_open_vector_editor' %>
|
||
|
</body>
|
||
|
</html>
|