diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-05 17:40:42 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-05 17:40:42 -0500 |
commit | dac049cd08d96d32862a50d749e7bf8a15d776c3 (patch) | |
tree | 3d9783abc73fa92f1a8788198f996ba1d2363a9b /app/Template/swimlane/table.php | |
parent | 4f3ca47d6130b1ffac5716dd25db222ef1f936d3 (diff) |
Add inline popoup for project sections
Diffstat (limited to 'app/Template/swimlane/table.php')
-rw-r--r-- | app/Template/swimlane/table.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/swimlane/table.php b/app/Template/swimlane/table.php index 89915d56..60eea47b 100644 --- a/app/Template/swimlane/table.php +++ b/app/Template/swimlane/table.php @@ -27,7 +27,7 @@ </li> <?php endif ?> <li> - <?= $this->url->link(t('Edit'), 'swimlane', 'edit', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id'])) ?> + <?= $this->url->link(t('Edit'), 'swimlane', 'edit', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id']), false, 'popover') ?> </li> <li> <?php if ($swimlane['is_active']): ?> @@ -37,7 +37,7 @@ <?php endif ?> </li> <li> - <?= $this->url->link(t('Remove'), 'swimlane', 'confirm', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id'])) ?> + <?= $this->url->link(t('Remove'), 'swimlane', 'confirm', array('project_id' => $project['id'], 'swimlane_id' => $swimlane['id']), false, 'popover') ?> </li> </ul> </div> |