|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<% if @journal_destroyed.nil? %>
|
|
|
|
|
alert('<%=l(:notice_failed_delete)%>');
|
|
|
|
|
<% elsif (['Principal','Project','Course', 'Bid', 'Contest', 'Softapplication'].include? @journal_destroyed.jour_type)%>
|
|
|
|
|
<% elsif (['Principal','Project','Course', 'Bid', 'Contest', 'Softapplication','HomeworkCommon'].include? @journal_destroyed.jour_type)%>
|
|
|
|
|
<% if @is_user%>
|
|
|
|
|
var destroyedItem = $('#<%=@journal_destroyed.id%>');
|
|
|
|
|
destroyedItem.fadeOut(600,function(){
|
|
|
|
@ -13,6 +13,14 @@
|
|
|
|
|
$('#course_jour_count').html("(<%= @jours_count %>)");
|
|
|
|
|
<% elsif @user && @jours_count%>
|
|
|
|
|
$('#jour_count').html("<%= @jours_count %>");
|
|
|
|
|
<% elsif @homework%>
|
|
|
|
|
<% if @user_activity_id == -1 %>
|
|
|
|
|
$("#homework_common_<%= @homework.id %>").replaceWith("<%= escape_javascript(render :partial => "users/user_homework_detail",:locals => {:homework_common => @homework, :is_in_course => @is_in_course})%>");
|
|
|
|
|
init_activity_KindEditor_data(<%= @homework.id%>,"","87%");
|
|
|
|
|
<% else %>
|
|
|
|
|
$("#user_activity_<%= @user_activity_id%>").replaceWith("<%= escape_javascript(render :partial => 'users/course_homework', :locals => {:activity => @homework,:user_activity_id =>@user_activity_id,:course_activity=>@course_activity}) %>");
|
|
|
|
|
init_activity_KindEditor_data(<%= @user_activity_id%>,"","87%");
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
var destroyedItem = $('#word_li_<%=@journal_destroyed.id%>')
|
|
|
|
|
destroyedItem.fadeOut(600,function(){
|
|
|
|
|