parent
7af82aac98
commit
2f0895c2c2
|
@ -5,5 +5,6 @@ $("#res_count").html(0);
|
||||||
$("#checkboxAll").attr('checked',false);
|
$("#checkboxAll").attr('checked',false);
|
||||||
$("#res_all_count").html(<%= @atta_count%>);
|
$("#res_all_count").html(<%= @atta_count%>);
|
||||||
closePopUp();
|
closePopUp();
|
||||||
|
alert("发送成功")
|
||||||
<% else%>
|
<% else%>
|
||||||
<% end %>
|
<% end %>
|
|
@ -5,5 +5,6 @@ $("#res_count").html(0);
|
||||||
$("#checkboxAll").attr('checked',false);
|
$("#checkboxAll").attr('checked',false);
|
||||||
$("#res_all_count").html(<%= @atta_count%>);
|
$("#res_all_count").html(<%= @atta_count%>);
|
||||||
closePopUp();
|
closePopUp();
|
||||||
|
alert("发送成功")
|
||||||
<% else%>
|
<% else%>
|
||||||
<% end %>
|
<% end %>
|
|
@ -143,7 +143,7 @@
|
||||||
//资源名称的链接
|
//资源名称的链接
|
||||||
var res_link;
|
var res_link;
|
||||||
var id; //资源id
|
var id; //资源id
|
||||||
var sendType; //发送到课程 1 发送到项目 2
|
var sendType = '1'; //发送到课程 1 发送到项目 2
|
||||||
var lastSendType; //保存上次发送的发送类型
|
var lastSendType; //保存上次发送的发送类型
|
||||||
$("#resources_list").mousedown(function(e) {
|
$("#resources_list").mousedown(function(e) {
|
||||||
//如果是右键的话
|
//如果是右键的话
|
||||||
|
@ -309,15 +309,15 @@
|
||||||
document.oncontextmenu = function() {return true;}
|
document.oncontextmenu = function() {return true;}
|
||||||
line.children().css("background-color",'white');
|
line.children().css("background-color",'white');
|
||||||
id = line.children().last().html();
|
id = line.children().last().html();
|
||||||
if (lastSendType === '1'){ //如果已经发送过一次了,那么就应该沿用上次发送的类型。
|
if (lastSendType === '2'){ //如果已经发送过一次了,那么就应该沿用上次发送的类型。
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: 'get',
|
type: 'get',
|
||||||
url: '<%= search_user_course_user_path(@user)%>' + '?send_id=' + id
|
url: '<%= search_user_project_user_path(@user)%>' + '?send_id=' + id
|
||||||
});
|
});
|
||||||
}else{
|
}else{
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: 'get',
|
type: 'get',
|
||||||
url: '<%= search_user_project_user_path(@user)%>' + '?send_id=' + id
|
url: '<%= search_user_course_user_path(@user)%>' + '?send_id=' + id
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue