Added Ajax loading icon for submit buttons

This commit is contained in:
Frederic Guillot
2016-03-05 07:56:58 -05:00
parent 9b68c3bc77
commit 0bd5328c19
79 changed files with 87 additions and 81 deletions

View File

@@ -18,7 +18,7 @@
</div>
<div class="form-actions">
<input type="submit" value="<?= t('Next step') ?>" class="btn btn-blue"/>
<button type="submit" class="btn btn-blue"><?= t('Next step') ?></button>
<?= t('or') ?>
<?= $this->url->link(t('cancel'), 'action', 'index', array('project_id' => $project['id'])) ?>
</div>

View File

@@ -70,6 +70,6 @@
<?= $this->form->select('action_name', $available_actions, $values) ?>
<div class="form-actions">
<input type="submit" value="<?= t('Next step') ?>" class="btn btn-blue">
<button type="submit" class="btn btn-blue"><?= t('Next step') ?></button>
</div>
</form>

View File

@@ -42,7 +42,7 @@
<?php endforeach ?>
<div class="form-actions">
<input type="submit" value="<?= t('Save this action') ?>" class="btn btn-blue"/>
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button>
<?= t('or') ?>
<?= $this->url->link(t('cancel'), 'action', 'index', array('project_id' => $project['id'])) ?>
</div>