scinote-web/app/views/shared/_marvinjs_modal.html.erb

26 lines
928 B
Text
Raw Normal View History

2019-04-27 00:24:21 +08:00
<div id="MarvinJsModal"
class="modal modal-marvin-js"
role="dialog"
aria-labelledby="marvinJsModal"
aria-hidden="true"
data-backdrop="static"
data-keyboard="false">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="preview-close" data-dismiss="modal"><span class="fas fa-times"></span></button>
<span class="file-name">
<%= text_field_tag :sketch_name %>
</span>
2019-04-27 02:33:20 +08:00
<p class="file-save-link"><span class="fas fa-save"></span> <%= t('SaveClose')%></p>
2019-04-27 00:24:21 +08:00
</div>
<div class="modal-body">
<div id="marvinjs-editor">
2019-04-27 02:33:20 +08:00
<iframe id="marvinjs-sketch" src="/marvinjs/editor.html"
2019-04-27 00:24:21 +08:00
style="overflow: hidden; min-width: 500px; min-height: 450px" ></iframe>
</div>
</div>
</div>
</div>
</div>
<%= javascript_include_tag("sitewide/marvinjs_editor") %>