* Finish task #7117/7125/7124.

This commit is contained in:
Yagami
2020-05-06 15:42:56 +08:00
parent 1c5a2dde2c
commit ef44299d7e
11 changed files with 268 additions and 55 deletions
+9
View File
@@ -0,0 +1,9 @@
$(function()
{
$('#copyProjects a').click(function(){setCopyProject($(this).data('id')); $('#copyProjectModal').modal('hide')});
});
function setCopyProject(programID)
{
location.href = createLink('program', 'create', 'type=' + type + '&copyProgramID=' + programID);
}