summaryrefslogtreecommitdiff
path: root/app/Template/board
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-25 20:49:26 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-25 20:49:26 -0500
commit5de091ea2821f189e867510c15e0d1d00f39b7e8 (patch)
tree8b1a28b790683c241e669ade3284031d2f6778ee /app/Template/board
parentd89fed4e2552838b8b38f9a665438b70a89f1542 (diff)
Show the task creation form as a popover
Diffstat (limited to 'app/Template/board')
-rw-r--r--app/Template/board/show.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/board/show.php b/app/Template/board/show.php
index 66e8b46d..142969c9 100644
--- a/app/Template/board/show.php
+++ b/app/Template/board/show.php
@@ -9,7 +9,7 @@
<?php foreach ($board as $column): ?>
<th width="<?= $column_with ?>%">
<div class="board-add-icon">
- <?= Helper\a('+', 'task', 'create', array('project_id' => $column['project_id'], 'column_id' => $column['id']), false, '', t('Add a new task')) ?>
+ <?= Helper\a('+', 'task', 'create', array('project_id' => $column['project_id'], 'column_id' => $column['id']), false, 'task-creation-popover', t('Add a new task')) ?>
</div>
<?= Helper\escape($column['title']) ?>
<?php if ($column['task_limit']): ?>