Lines Matching defs:due
123 * @param {string} due the task's due date, undefined for autodetect
128 buildTitle: function ($applyto, assignees, due, closedby, closedon) {
147 // determine due date
148 if (!due) {
149 var $due = $applyto.first().find('span.plugin_do_meta_date');
150 if ($due.length === 0) {
151 $due = $applyto.parent('td').parent().first().find('td.plugin_do_date');
153 due = PluginDo.stripTags($due.length ? $due.html() : '');
155 if (due !== '') {
158 var newTitle = PluginDo.getLang('title' + titelNo, assignees.join(', '), due);
219 * @param {HTMLElement} ele span with due date
220 * @returns {boolean} whether task is still open and exceed due date