diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Template/board/assignee.php | 2 | ||||
-rw-r--r-- | app/Template/board/category.php | 2 | ||||
-rw-r--r-- | app/Template/task/edit.php | 2 | ||||
-rw-r--r-- | app/Template/task/new.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/app/Template/board/assignee.php b/app/Template/board/assignee.php index cd03a67e..c513f572 100644 --- a/app/Template/board/assignee.php +++ b/app/Template/board/assignee.php @@ -14,7 +14,7 @@ <div class="form-actions"> <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?= t('or') ?> - <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $project['id'])) ?> + <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $project['id']), false, 'close-popover') ?> </div> </form> </section> diff --git a/app/Template/board/category.php b/app/Template/board/category.php index 24842146..ee01ec5f 100644 --- a/app/Template/board/category.php +++ b/app/Template/board/category.php @@ -14,7 +14,7 @@ <div class="form-actions"> <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?= t('or') ?> - <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $project['id'])) ?> + <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $project['id']), false, 'close-popover') ?> </div> </form> </section> diff --git a/app/Template/task/edit.php b/app/Template/task/edit.php index 0df1676b..f9ac2b20 100644 --- a/app/Template/task/edit.php +++ b/app/Template/task/edit.php @@ -59,7 +59,7 @@ <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?= t('or') ?> <?php if ($ajax): ?> - <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $task['project_id'])) ?> + <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $task['project_id']), false, 'close-popover') ?> <?php else: ?> <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> <?php endif ?> diff --git a/app/Template/task/new.php b/app/Template/task/new.php index 5eef9923..e64effde 100644 --- a/app/Template/task/new.php +++ b/app/Template/task/new.php @@ -74,7 +74,7 @@ <div class="form-actions"> <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $values['project_id'])) ?> + <?= t('or') ?> <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $values['project_id']), false, 'close-popover') ?> </div> </form> </section> |