Merge branch 'dev_hjq' of http://repository.trustie.net/xianbo/trustie2 into dev_hjq
Conflicts: app/views/organizations/_show_org_document.html.erbke_guange
commit
7dc02d2c4f
@ -1,40 +1,41 @@
|
|||||||
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg'%>
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg'%>
|
||||||
<script>
|
<script>
|
||||||
function check_org_title(title)
|
function check_org_title(title)
|
||||||
{
|
{
|
||||||
if($("#document_title").val().trim() == "")
|
if($("#document_title").val().trim() == "")
|
||||||
{
|
{
|
||||||
$("#doc_title_hint").html("<span class='c_red'>标题不能为空</span>").show();
|
$("#doc_title_hint").html("<span class='c_red'>标题不能为空</span>").show();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$("#doc_title_hint").hide();
|
$("#doc_title_hint").hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<%= form_tag organization_org_document_comments_path(:organization_id => @organization.id), :id => 'new_org_document_form' do |f| %>
|
<%= form_tag organization_org_document_comments_path(:organization_id => @organization.id), :id => 'new_org_document_form' do |f| %>
|
||||||
<div class="resources">
|
<div class="resources">
|
||||||
<div>
|
<div>
|
||||||
<input class="postDetailInput fl mr15" style="margin-bottom:15px;" name="org_document_comment[title]" id="document_title" style="resize:none;" onfocus = "$('#org_document_editor').show();" onblur="check_org_title();" placeholder="请输入文章标题"></input>
|
<input class="postDetailInput fl" name="org_document_comment[title]" id="document_title" style="resize:none;" onfocus = "$('#org_document_editor').show();" onblur="check_org_title();" placeholder="请输入文章标题" />
|
||||||
</div>
|
</div>
|
||||||
<div id="doc_title_hint"></div>
|
<div id="doc_title_hint"></div>
|
||||||
<div id="org_document_editor" class="mt15" style="display: none">
|
<div class="cl"></div>
|
||||||
<div class="mt10">
|
<div id="org_document_editor" class="mt10" style="display: none">
|
||||||
<%= kindeditor_tag 'org_document_comment[content]','', :editor_id => 'org_document_description_editor', :height => "150px" %>
|
<div>
|
||||||
</div>
|
<%= kindeditor_tag 'org_document_comment[content]','', :editor_id => 'org_document_description_editor', :height => "150px" %>
|
||||||
<div class="cl"></div>
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
|
||||||
<p id="homework_course_id_span" class="c_red mt5"></p>
|
|
||||||
<div class="cl"></div>
|
<p id="homework_course_id_span" class="c_red mt5"></p>
|
||||||
|
<div class="cl"></div>
|
||||||
<div class="mt5">
|
|
||||||
<a href="javascript:void(0);" class="BlueCirBtnMini fr" onclick="org_document_description_editor.sync();$('#new_org_document_form').submit();">确定</a>
|
<div class="mt5">
|
||||||
<span class="fr mr10 mt3">或</span>
|
<a href="javascript:void(0);" class="BlueCirBtnMini fr" onclick="org_document_description_editor.sync();$('#new_org_document_form').submit();">确定</a>
|
||||||
<a href="javascript:void(0);" onclick="$('#org_document_editor').hide(); $('#doc_title_hint').hide();" class="fr mr10 mt3">取消</a>
|
<span class="fr mr10 mt3">或</span>
|
||||||
<div class="cl"></div>
|
<a href="javascript:void(0);" onclick="$('#org_document_editor').hide(); $('#doc_title_hint').hide();" class="fr mr10 mt3">取消</a>
|
||||||
</div>
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
Loading…
Reference in new issue