2016-01-20 18:37:47 +08:00
|
|
|
<%= content_for(:header_tags) do %>
|
|
|
|
<%= import_ke(enable_at: false, prettify: false, init_activity: false) %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= error_messages_for 'message' %>
|
|
|
|
<li>
|
|
|
|
<%= text_area :quote,:quote,:style => 'display:none' %>
|
|
|
|
<%= hidden_field_tag :asset_id,params[:asset_id],:required => false,:style => 'display:none' %>
|
|
|
|
<%= f.kindeditor :content, :editor_id => 'jour_content_editor',
|
|
|
|
:width => '99.7%',
|
2016-01-22 21:41:17 +08:00
|
|
|
:height => 100,
|
|
|
|
:minHeight=>100,
|
2016-01-20 18:37:47 +08:00
|
|
|
:input_html => { :id => 'jour_content',
|
|
|
|
:class => 'talk_text fl',
|
2016-01-26 18:24:15 +08:00
|
|
|
:maxlength => 5000 }
|
|
|
|
%>
|
2016-01-20 18:37:47 +08:00
|
|
|
<div class="cl"></div>
|
|
|
|
<p id="jour_content_span"></p>
|
2016-10-26 16:12:51 +08:00
|
|
|
<p id="e_tip" class="c_grey"></p>
|
|
|
|
<p id="e_tips" class="c_grey"></p>
|
2016-01-20 18:37:47 +08:00
|
|
|
</li>
|
|
|
|
<div class="cl"></div>
|
2016-10-26 16:12:51 +08:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function(){
|
|
|
|
setTimeout(function(){
|
|
|
|
elocalStorage(jour_content_editor,'user_newfeedback_<%=User.current.id %>_<%=@user.id %>');
|
|
|
|
}, 10000);
|
|
|
|
});
|
|
|
|
</script>
|