From 432fe28c54f30c19dc7a12a920c6c67a314db07d Mon Sep 17 00:00:00 2001 From: cxt <853663049@qq.com> Date: Fri, 12 Apr 2019 11:53:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E7=94=A8=E6=88=B7=E4=B8=8E=E8=B6=85?= =?UTF-8?q?=E7=BA=A7=E7=AE=A1=E7=90=86=E5=91=98=E7=9A=84=E7=A7=81=E4=BF=A1?= =?UTF-8?q?=E7=AA=97=E5=8F=A3=EF=BC=8C=E5=A2=9E=E5=8A=A0=E5=8F=91=E9=80=81?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E9=A1=B5=E7=BD=91=E5=9D=80=E7=9A=84=E6=96=87?= =?UTF-8?q?=E5=AD=97=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/users/_message_dialogue.html.erb | 1 + public/javascripts/create_kindeditor.js | 3 +++ 2 files changed, 4 insertions(+) diff --git a/app/views/users/_message_dialogue.html.erb b/app/views/users/_message_dialogue.html.erb index d8ae94d0..2c39d7b6 100644 --- a/app/views/users/_message_dialogue.html.erb +++ b/app/views/users/_message_dialogue.html.erb @@ -49,6 +49,7 @@
+ 在问题反馈时,请同时发送问题发生页的网址链接,以便我们高效的为您服务
diff --git a/public/javascripts/create_kindeditor.js b/public/javascripts/create_kindeditor.js index 9d6f1645..fdd493d8 100644 --- a/public/javascripts/create_kindeditor.js +++ b/public/javascripts/create_kindeditor.js @@ -379,6 +379,7 @@ function sd_create_editor_from_message_data(id){ params.toolbar_container = $("div[nhname='toolbar_container_" + id + "']", params.div_form); params.cancel_btn = $("#new_message_cancel_btn_" + id); params.submit_btn = $("#new_message_submit_btn_" + id); + params.notice_msg = $("#new_message_notice_" + id); params.height = height; params.width = width; if (params.textarea.data('init') == undefined) { @@ -432,6 +433,7 @@ function sd_create_message_editor(params){ params.toolbar_container.hide(); this.resize("100%", "30px"); params.submit_btn.hide(); + params.notice_msg.hide(); } $('#mini_comment_section').height('auto'); @@ -457,6 +459,7 @@ function sd_create_message_editor(params){ $(".private-list").css("max-height",$("#dialogPanel").height()); params.submit_btn.show(); + params.notice_msg.show(); $('#mini_comment_section').height('240px') },