2015-09-01 10:43:30 +08:00
|
|
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg',"init_KindEditor" %>
|
2015-09-01 14:18:44 +08:00
|
|
|
<style type="text/css">
|
|
|
|
/*回复框*/
|
|
|
|
div.ke-toolbar{display:none;width:400px;border:none;background:none;padding:0px 0px;}
|
|
|
|
span.ke-toolbar-icon{line-height:26px;font-size:14px;padding-left:26px;}
|
|
|
|
span.ke-toolbar-icon-url{background-image:url( /images/public_icon.png )}
|
|
|
|
div.ke-toolbar .ke-outline{padding:0px 0px;line-height:26px;font-size:14px;}
|
|
|
|
span.ke-icon-emoticons{background-position:0px -671px;width:50px;height:26px;}
|
|
|
|
span.ke-icon-emoticons:hover{background-position:-79px -671px;width:50px;height:26px;}
|
|
|
|
div.ke-toolbar .ke-outline{border:none;}
|
2015-09-01 16:01:00 +08:00
|
|
|
.ke-inline-block{display: none;}
|
2015-09-01 14:18:44 +08:00
|
|
|
</style>
|
2015-08-25 20:08:52 +08:00
|
|
|
<% user_activities.each do |user_activity|
|
2015-09-01 10:43:30 +08:00
|
|
|
if user_activities %>
|
2015-09-02 17:04:01 +08:00
|
|
|
<script>
|
2015-08-28 17:25:42 +08:00
|
|
|
function expand_reply(container,btnid){
|
|
|
|
var target = $(container);
|
|
|
|
var btn = $(btnid);
|
|
|
|
if(btn.data('init')=='0'){
|
|
|
|
btn.data('init',1);
|
|
|
|
btn.html('收起回复('+btn.data('count')+')');
|
|
|
|
target.show();
|
|
|
|
}else{
|
|
|
|
btn.data('init',0);
|
2015-09-06 15:31:26 +08:00
|
|
|
btn.html('展开更多('+btn.data('count')+')');
|
2015-08-28 17:25:42 +08:00
|
|
|
target.hide();
|
|
|
|
target.eq(0).show();
|
|
|
|
target.eq(1).show();
|
|
|
|
}
|
|
|
|
}
|
2015-09-01 10:43:30 +08:00
|
|
|
|
|
|
|
$(function() {
|
|
|
|
init_KindEditor_data(<%= user_activity.id%>);
|
|
|
|
});
|
2015-08-28 17:25:42 +08:00
|
|
|
</script>
|
2015-08-25 20:08:52 +08:00
|
|
|
<% act= user_activity.act unless user_activity.act_type == "ProjectCreateInfo" %>
|
|
|
|
<% case user_activity.container_type.to_s %>
|
|
|
|
<% when 'Course' %>
|
|
|
|
<% if act %>
|
|
|
|
<% case user_activity.act_type.to_s %>
|
|
|
|
<% when 'HomeworkCommon' %>
|
2015-09-01 14:18:44 +08:00
|
|
|
<%= render :partial => 'course_homework', :locals => {:activity => act,:user_activity_id =>user_activity.id} %>
|
2015-08-25 20:08:52 +08:00
|
|
|
<% when 'News' %>
|
2015-09-01 10:43:30 +08:00
|
|
|
<%= render :partial => 'course_news', :locals => {:activity => act,:user_activity_id =>user_activity.id} %>
|
2015-08-25 20:08:52 +08:00
|
|
|
<% when 'Message'%>
|
2015-09-01 14:18:44 +08:00
|
|
|
<%= render :partial => 'course_message', :locals => {:activity => act,:user_activity_id =>user_activity.id} %>
|
2015-08-26 15:24:57 +08:00
|
|
|
<% when 'Poll' %>
|
2015-09-01 14:18:44 +08:00
|
|
|
<%= render :partial => 'course_poll', :locals => {:activity => act, :user_activity_id => user_activity.id} %>
|
2015-08-25 20:08:52 +08:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% when 'Project' %>
|
2015-08-26 17:02:54 +08:00
|
|
|
<% if act %>
|
|
|
|
<% case user_activity.act_type.to_s %>
|
|
|
|
<% when 'Issue' %>
|
2015-09-01 14:18:44 +08:00
|
|
|
<%= render :partial => 'project_issue', :locals => {:activity => act,:user_activity_id =>user_activity.id} %>
|
2015-08-26 17:02:54 +08:00
|
|
|
<% when 'Message' %>
|
2015-09-01 14:18:44 +08:00
|
|
|
<%= render :partial => 'project_message', :locals => {:activity => act,:user_activity_id =>user_activity.id} %>
|
2015-08-26 17:02:54 +08:00
|
|
|
<% end %>
|
2015-08-25 20:08:52 +08:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2015-09-02 14:34:51 +08:00
|
|
|
|
2015-09-02 14:19:47 +08:00
|
|
|
<% if user_activities.count == 10%>
|
2015-09-10 15:08:10 +08:00
|
|
|
<div id="show_more_activities" class="loadMore mt10 f_grey">展开更多<%=link_to "", user_activities_path(@user.id,:type => type,:page => page),:id => "more_activities_link",:remote => "true",:class => "none" %></div>
|
2015-09-10 10:01:43 +08:00
|
|
|
<%#= link_to "点击展开更多",user_activities_path(@user.id,:type => type,:page => page),:id => "show_more_activities",:remote => "true",:class => "loadMore mt10 f_grey"%>
|
2015-09-02 14:19:47 +08:00
|
|
|
<% end%>
|
2015-09-10 10:01:43 +08:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
$("#show_more_activities").mouseover(function(){
|
|
|
|
$("#more_activities_link").click();
|
|
|
|
});
|
|
|
|
</script>
|