socialforge/app/views/blog_comments/quote.js.erb

8 lines
588 B
Plaintext
Raw Normal View History

2015-10-24 15:34:43 +08:00
if($("#reply_message_<%= @blogComment.id%>").length > 0) {
2016-07-14 14:44:47 +08:00
$("#reply_message_<%= @blogComment.id%>").replaceWith("<%= escape_javascript(render :partial => 'blog_comments/simple_ke_reply_form', :locals => {:reply => @blogComment,:temp =>@temp,:course_id=>@course_id}) %>");
2015-10-24 15:34:43 +08:00
$(function(){
2016-01-29 16:55:07 +08:00
sd_create_editor_from_data(<%= @blogComment.id%>,null,"100%", "<%=@blogComment.class.to_s%>");
2015-10-24 15:34:43 +08:00
});
}else if($("#reply_to_message_<%= @blogComment.id%>").length >0) {
$("#reply_to_message_<%= @blogComment.id%>").replaceWith("<p id='reply_message_<%= @blogComment.id%>'></p>");
}