socialforge/app/views/org_document_comments/_new.html.erb

71 lines
2.9 KiB
Plaintext
Raw Normal View History

2015-12-06 15:03:36 +08:00
<%= content_for(:header_tags) do %>
<%= import_ke(enable_at: false, prettify: false, init_activity: false) %>
<%= javascript_include_tag "des_kindEditor" %>
2015-12-06 15:03:36 +08:00
<% end %>
2015-11-12 17:00:35 +08:00
<script>
2016-02-02 17:16:50 +08:00
$(function(){
init_des_data(150);
});
2015-11-12 20:57:41 +08:00
function check_org_title()
2015-11-12 17:00:35 +08:00
{
if($("#document_title").val().trim() == "")
{
$("#doc_title_hint").html("<span class='c_red'>标题不能为空</span>").show();
2015-11-12 20:57:41 +08:00
return false;
2015-11-12 17:00:35 +08:00
}
else
{
$("#doc_title_hint").hide();
2015-11-12 20:57:41 +08:00
return true;
}
}
function create_org_document()
{
if(check_org_title() == true)
{
org_document_description_editor.sync();
$('#new_org_document_form').submit();
2015-11-12 17:00:35 +08:00
}
}
2015-11-13 15:02:12 +08:00
function cancel_create_org_document(){
$("#document_title").val("");
2016-02-02 17:16:50 +08:00
//org_document_description_editor.html("");
//org_document_description_editor.sync();
$('#org_document_editor').hide();
$('#doc_title_hint').hide();
2015-11-13 15:02:12 +08:00
}
2015-11-12 17:00:35 +08:00
</script>
2016-06-02 18:04:00 +08:00
<div class="resources" style="margin-top:<%= User.current.logged? ? '0px':'10px' %>;" nhname="new_topic_form">
2016-02-02 17:16:50 +08:00
<%= form_tag organization_org_document_comments_path(:organization_id => @organization.id), :id => 'new_org_document_form' do |f| %>
2015-11-12 17:00:35 +08:00
<div>
<input class="postDetailInput fl" maxlength="250" name="org_document_comment[title]" id="document_title" style="resize:none;" onfocus = "$('#org_document_editor').show();" placeholder="请输入文章标题" />
2015-11-12 17:00:35 +08:00
</div>
<div id="doc_title_hint"></div>
<div class="cl"></div>
<div id="org_document_editor" class="mt10" style="display: none">
<div>
2016-02-02 17:16:50 +08:00
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='description_textarea' name="org_document_comment[content]"></textarea>
<%#= kindeditor_tag 'org_document_comment[content]','', :editor_id => 'org_document_description_editor', :height => "150px" %>
2015-11-12 17:00:35 +08:00
</div>
<div class="cl"></div>
<p id="homework_course_id_span" class="c_red mt5"></p>
<p id="e_tip" class="c_grey"></p>
<p id="e_tips" class="c_grey"></p>
2015-11-12 17:00:35 +08:00
<div class="cl"></div>
<div class="mt10">
<div class="fl" id="topic_attachments">
<%= render :partial => 'org_document_comments/attachment', :locals => {:container => nil} %>
</div>
</div>
<div class="cl"></div>
2015-11-12 17:00:35 +08:00
<div class="mt5">
2016-02-02 17:16:50 +08:00
<a href="javascript:void(0);" class="BlueCirBtnMini fr" id="new_topic_submit_btn">确定</a>
2015-11-12 17:00:35 +08:00
<span class="fr mr10 mt3">或</span>
2016-02-02 17:16:50 +08:00
<a href="javascript:void(0);" id="new_topic_cancel_btn" class="fr mr10 mt3">取消</a>
2015-11-12 17:00:35 +08:00
<div class="cl"></div>
</div>
</div>
2016-02-02 17:16:50 +08:00
<% end %>
2015-11-12 17:00:35 +08:00
</div>