diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-05 07:56:58 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-05 07:56:58 -0500 |
commit | 0bd5328c19b076a23719b3860296e5507c773d34 (patch) | |
tree | 1eca50843fabb966c1c5ee6441ea23ccf1dca989 /app/Template/swimlane | |
parent | 9b68c3bc77bfa49f820afbcb601aaf5174b39bcc (diff) |
Added Ajax loading icon for submit buttons
Diffstat (limited to 'app/Template/swimlane')
-rw-r--r-- | app/Template/swimlane/create.php | 2 | ||||
-rw-r--r-- | app/Template/swimlane/edit.php | 2 | ||||
-rw-r--r-- | app/Template/swimlane/edit_default.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/swimlane/create.php b/app/Template/swimlane/create.php index bb389555..aa92a930 100644 --- a/app/Template/swimlane/create.php +++ b/app/Template/swimlane/create.php @@ -30,7 +30,7 @@ <div class="form-help"><?= $this->url->doc(t('Write your text in Markdown'), 'syntax-guide') ?></div> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> <?= t('or') ?> <?= $this->url->link(t('cancel'), 'Swimlane', 'index', array('project_id' => $project['id']), false, 'close-popover') ?> </div> diff --git a/app/Template/swimlane/edit.php b/app/Template/swimlane/edit.php index 31d819d4..232570e7 100644 --- a/app/Template/swimlane/edit.php +++ b/app/Template/swimlane/edit.php @@ -34,7 +34,7 @@ <div class="form-help"><?= $this->url->doc(t('Write your text in Markdown'), 'syntax-guide') ?></div> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> <?= t('or') ?> <?= $this->url->link(t('cancel'), 'swimlane', 'index', array('project_id' => $project['id']), false, 'close-popover') ?> </div> diff --git a/app/Template/swimlane/edit_default.php b/app/Template/swimlane/edit_default.php index df25ec12..3bf82568 100644 --- a/app/Template/swimlane/edit_default.php +++ b/app/Template/swimlane/edit_default.php @@ -11,7 +11,7 @@ <?= $this->form->checkbox('show_default_swimlane', t('Show default swimlane'), 1, $values['show_default_swimlane'] == 1) ?> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> <?= t('or') ?> <?= $this->url->link(t('cancel'), 'Swimlane', 'index', array('project_id' => $project['id']), false, 'close-popover') ?> </div> |