|
|
|
@ -143,7 +143,7 @@
|
|
|
|
|
//资源名称的链接
|
|
|
|
|
var res_link;
|
|
|
|
|
var id; //资源id
|
|
|
|
|
var sendType; //发送到课程 1 发送到项目 2
|
|
|
|
|
var sendType = '1'; //发送到课程 1 发送到项目 2
|
|
|
|
|
var lastSendType; //保存上次发送的发送类型
|
|
|
|
|
$("#resources_list").mousedown(function(e) {
|
|
|
|
|
//如果是右键的话
|
|
|
|
@ -309,15 +309,15 @@
|
|
|
|
|
document.oncontextmenu = function() {return true;}
|
|
|
|
|
line.children().css("background-color",'white');
|
|
|
|
|
id = line.children().last().html();
|
|
|
|
|
if (lastSendType === '1'){ //如果已经发送过一次了,那么就应该沿用上次发送的类型。
|
|
|
|
|
if (lastSendType === '2'){ //如果已经发送过一次了,那么就应该沿用上次发送的类型。
|
|
|
|
|
$.ajax({
|
|
|
|
|
type: 'get',
|
|
|
|
|
url: '<%= search_user_course_user_path(@user)%>' + '?send_id=' + id
|
|
|
|
|
url: '<%= search_user_project_user_path(@user)%>' + '?send_id=' + id
|
|
|
|
|
});
|
|
|
|
|
}else{
|
|
|
|
|
$.ajax({
|
|
|
|
|
type: 'get',
|
|
|
|
|
url: '<%= search_user_project_user_path(@user)%>' + '?send_id=' + id
|
|
|
|
|
url: '<%= search_user_course_user_path(@user)%>' + '?send_id=' + id
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|