Lines Matching refs:assignees
122 * @param {Array} assignees assignees for the task, undefined for autodetect
128 buildTitle: function ($applyto, assignees, due, closedby, closedon) {
131 // determine assignees
132 if (!assignees || !assignees.length) {
133 //take the assignees of the first task or table row when tasks are duplicated
138 assignees = [];
140 assignees.push(PluginDo.stripTags(jQuery(assignee).html()));
143 if (assignees.length > 0) {
158 var newTitle = PluginDo.getLang('title' + titelNo, assignees.join(', '), due);