diff options
author | Rafael de Camargo <rafaelcamargo@trt15.jus.br> | 2019-07-17 09:59:41 -0300 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-17 14:34:27 -0700 |
commit | ff53a6aa6bd31bdb8fbdeef4865507ae502ea386 (patch) | |
tree | 20528b344f5de151661c9d31737c31a638008156 /app/Template | |
parent | c250f3b1b8b42652cd2f3b3f19ce36624e384ff0 (diff) |
Fix tabindexes on task creation and modification forms
- Add focus to tags, color and checkboxes fields
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/task_creation/show.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/task_creation/show.php b/app/Template/task_creation/show.php index 935e0823..e380ab10 100644 --- a/app/Template/task_creation/show.php +++ b/app/Template/task_creation/show.php @@ -38,8 +38,8 @@ <div class="task-form-bottom"> <?php if (! isset($duplicate)): ?> - <?= $this->form->checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1) ?> - <?= $this->form->checkbox('duplicate_multiple_projects', t('Duplicate to multiple projects'), 1) ?> + <?= $this->form->checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1, '', array("tabindex" => "16")) ?> + <?= $this->form->checkbox('duplicate_multiple_projects', t('Duplicate to multiple projects'), 1, false, '', array("tabindex" => "17")) ?> <?php endif ?> <?= $this->modal->submitButtons() ?> |