diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-20 16:29:20 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-20 16:29:20 -0400 |
commit | 4c733eb715a0939b8a12f68ad97660ffc1933d16 (patch) | |
tree | 1d423e3c320faa45b52886ed95bcf62f8f905297 /app/Template/task | |
parent | 77c84410ec7cbca50aecc04c3745b46122fbe59c (diff) |
Addded new keyboard shortcut to edit the task description
Diffstat (limited to 'app/Template/task')
-rw-r--r-- | app/Template/task/layout.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Template/task/layout.php b/app/Template/task/layout.php index 48360664..ca27fd4f 100644 --- a/app/Template/task/layout.php +++ b/app/Template/task/layout.php @@ -23,6 +23,7 @@ <section class="sidebar-container" id="task-view" data-edit-url="<?= $this->url->href('taskmodification', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" + data-description-url="<?= $this->url->href('taskmodification', 'description', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" data-subtask-url="<?= $this->url->href('subtask', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" data-internal-link-url="<?= $this->url->href('TaskInternalLink', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" data-comment-url="<?= $this->url->href('comment', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"> |