mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 15:40:31 +08:00
a3bbf94643
This fixes the mentioned issues @mlorb mentioned. Closes SCI-637.
14 lines
No EOL
707 B
Text
14 lines
No EOL
707 B
Text
<%= bootstrap_form_for(@comment, url: @update_url, remote: true, html: { method: :put, class: 'comment-form edit-comment-form' }, data: { role: 'edit-comment-message-form' }) do |f| %>
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<%= f.smart_text_area :message, single_line: true, autofocus: true, hide_label: true, data: { role: 'message-input' }, value: @comment.message %>
|
|
<span class="input-group-btn">
|
|
<a class="btn btn-default" data-action="save">
|
|
<span class="glyphicon glyphicon-ok"></span>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
<span class="help-block hide"></span>
|
|
<a data-action="cancel" href="#"><%= t('general.cancel') %></a>
|
|
</div>
|
|
<% end %> |