* [task#133225,doing,1h] compatible pop-up loading.
This commit is contained in:
@@ -37,9 +37,9 @@ window.deleteItem = function(obj)
|
||||
*/
|
||||
window.setDeptUsers = function()
|
||||
{
|
||||
const dept = $('input[name=dept]').val(); // Get dept ID.
|
||||
const dept = $('#featureBar input[name=dept]').val(); // Get dept ID.
|
||||
const link = $.createLink('execution', 'manageMembers', 'executionID=' + executionID + '&team2Import=' + team2Import + '&dept=' + dept); // Create manageMembers link.
|
||||
loadPage(link);
|
||||
isInModal ? loadModal(link) : loadPage(link);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -51,10 +51,10 @@ window.setDeptUsers = function()
|
||||
*/
|
||||
function choseTeam2Copy()
|
||||
{
|
||||
const team = $('input[name=execution]').val();
|
||||
const dept = $('input[name=dept]').val();
|
||||
const team = $('#featureBar input[name=execution]').val();
|
||||
const dept = $('#featureBar input[name=dept]').val();
|
||||
const link = $.createLink('execution', 'manageMembers', 'executionID=' + executionID + '&team2Import=' + team + '&dept=' + dept);
|
||||
loadPage(link);
|
||||
isInModal ? loadModal(link) : loadPage(link);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -275,6 +275,7 @@ $lang->execution->batchEdit = "Mehere bearbeiten";
|
||||
$lang->execution->batchEditAction = "Batch Edit";
|
||||
$lang->execution->batchChangeStatus = "Batch Change Status";
|
||||
$lang->execution->manageMembers = 'Teams verwalten';
|
||||
$lang->execution->manageTeamMember = 'Manage Team Member';
|
||||
$lang->execution->unlinkMember = 'Mitgliefer entfernen';
|
||||
$lang->execution->unlinkStory = 'Story entfernen';
|
||||
$lang->execution->unlinkStoryAB = 'Unlink';
|
||||
|
||||
@@ -275,6 +275,7 @@ $lang->execution->batchEdit = "Edit";
|
||||
$lang->execution->batchEditAction = "Batch Edit";
|
||||
$lang->execution->batchChangeStatus = "Batch Change Status";
|
||||
$lang->execution->manageMembers = 'Manage Team';
|
||||
$lang->execution->manageTeamMember = 'Manage Team Member';
|
||||
$lang->execution->unlinkMember = 'Remove Member';
|
||||
$lang->execution->unlinkStory = 'Unlink Story';
|
||||
$lang->execution->unlinkStoryAB = 'Unlink';
|
||||
|
||||
@@ -275,6 +275,7 @@ $lang->execution->batchEdit = "Edit";
|
||||
$lang->execution->batchEditAction = "Batch Edit";
|
||||
$lang->execution->batchChangeStatus = "Batch Change Status";
|
||||
$lang->execution->manageMembers = 'Manage Team';
|
||||
$lang->execution->manageTeamMember = 'Manage Team Member';
|
||||
$lang->execution->unlinkMember = 'Remove Member';
|
||||
$lang->execution->unlinkStory = 'Unlink Story';
|
||||
$lang->execution->unlinkStoryAB = 'Unlink';
|
||||
|
||||
@@ -275,6 +275,7 @@ $lang->execution->batchEdit = "编辑";
|
||||
$lang->execution->batchEditAction = "批量编辑";
|
||||
$lang->execution->batchChangeStatus = "批量修改状态";
|
||||
$lang->execution->manageMembers = '团队管理';
|
||||
$lang->execution->manageTeamMember = '维护团队成员';
|
||||
$lang->execution->unlinkMember = '移除成员';
|
||||
$lang->execution->unlinkStory = "移除{$lang->SRCommon}";
|
||||
$lang->execution->unlinkStoryAB = "移除{$lang->SRCommon}";
|
||||
|
||||
@@ -14,6 +14,7 @@ jsVar('users', $users);
|
||||
jsVar('roles', $roles);
|
||||
jsVar('team2Import', $team2Import);
|
||||
jsVar('executionID', $execution->id);
|
||||
jsVar('isInModal', isInModal());
|
||||
|
||||
/* zin: Define the set::module('team') feature bar on main menu. */
|
||||
$copyTeamBox = '';
|
||||
@@ -263,7 +264,7 @@ div
|
||||
toggle::tooltip(array('title' => $lang->execution->limitedTip)),
|
||||
'help'
|
||||
),
|
||||
set::width('96px')
|
||||
set::width('120px')
|
||||
),
|
||||
h::th
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user