8 lines
588 B
Plaintext
8 lines
588 B
Plaintext
if($("#reply_message_<%= @blogComment.id%>").length > 0) {
|
|
$("#reply_message_<%= @blogComment.id%>").replaceWith("<%= escape_javascript(render :partial => 'blog_comments/simple_ke_reply_form', :locals => {:reply => @blogComment,:temp =>@temp,:course_id=>@course_id}) %>");
|
|
$(function(){
|
|
sd_create_editor_from_data(<%= @blogComment.id%>,null,"100%", "<%=@blogComment.class.to_s%>");
|
|
});
|
|
}else if($("#reply_to_message_<%= @blogComment.id%>").length >0) {
|
|
$("#reply_to_message_<%= @blogComment.id%>").replaceWith("<p id='reply_message_<%= @blogComment.id%>'></p>");
|
|
} |