diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-04 20:51:52 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-04 20:51:52 -0400 |
commit | b2ba780c9dded0bb2f0669986144c53db5eb6a2c (patch) | |
tree | 7780bda0512a4d24cb8a8d178c93a3afe16064b8 /app/Template/board/task_private.php | |
parent | c231b65cfc54aad8b143a76e19c6aea428f42a5c (diff) |
Show title in tooltip for collapsed tasks
Diffstat (limited to 'app/Template/board/task_private.php')
-rw-r--r-- | app/Template/board/task_private.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Template/board/task_private.php b/app/Template/board/task_private.php index 48e931c9..87121f2c 100644 --- a/app/Template/board/task_private.php +++ b/app/Template/board/task_private.php @@ -16,7 +16,9 @@ <?= $this->e($this->user->getInitials($task['assignee_name'] ?: $task['assignee_username'])) ?> </span> - <?php endif ?> - <?= $this->url->link($this->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'task-board-collapsed-title') ?> + <span class="tooltip" title="<?= $this->e($task['title']) ?>" + <?= $this->url->link($this->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'task-board-collapsed-title') ?> + </span> </div> <div class="task-board-expanded"> |