socialforge/app/views/issues/reply.js.erb

8 lines
461 B
Plaintext
Raw Normal View History

2015-12-17 18:12:38 +08:00
if($("#reply_message_<%= @jour.id%>").length > 0) {
$("#reply_message_<%= @jour.id%>").replaceWith("<%= escape_javascript(render :partial => 'issues/issue_reply_ke_form') %>");
$(function(){
2016-07-21 10:30:48 +08:00
sd_create_editor_from_data(<%= @jour.id%>, null, "100%", "<%= @jour.class.name %>");
2015-12-17 18:12:38 +08:00
});
2016-07-21 10:30:48 +08:00
}else if($("#reply_to_message_<%= @jour.id%>").length >0) {
$("#reply_to_message_<%= @jour.id%>").replaceWith("<p id='reply_message_<%= @jour.id%>'></p>");
2015-12-17 18:12:38 +08:00
}