Show the task creation form as a popover

This commit is contained in:
Frédéric Guillot
2014-11-25 20:49:26 -05:00
parent d89fed4e25
commit 5de091ea28
4 changed files with 5 additions and 2 deletions

View File

@@ -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']): ?>