mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 17:41:12 +02:00
Add back buttons
This commit is contained in:
parent
c047a1d0a4
commit
2782ae03c5
2 changed files with 10 additions and 4 deletions
|
@ -137,9 +137,12 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3 col-md-offset-9">
|
<dd class="col-md-3">
|
||||||
|
<button type="button" class="btn btn-md btn-block btn-default back-button">Back</button>
|
||||||
|
</dd>
|
||||||
|
<dd class="col-md-3 col-md-offset-6">
|
||||||
<button id="save-permissions" type="button" class="btn btn-md btn-block btn-primary">Next</button>
|
<button id="save-permissions" type="button" class="btn btn-md btn-block btn-primary">Next</button>
|
||||||
</div>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -179,7 +182,10 @@
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
<dl class="row">
|
<dl class="row">
|
||||||
<dd class="col-md-3 col-md-offset-9">
|
<dd class="col-md-3">
|
||||||
|
<button type="button" class="btn btn-md btn-block btn-default back-button">Back</button>
|
||||||
|
</dd>
|
||||||
|
<dd class="col-md-3 col-md-offset-6">
|
||||||
<button id="save-username-password" type="button" class="btn btn-md btn-block btn-primary">Finish</button>
|
<button id="save-username-password" type="button" class="btn btn-md btn-block btn-primary">Finish</button>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
|
@ -108,7 +108,7 @@ function setupWizardSteps() {
|
||||||
|
|
||||||
if (Settings.data.values.wizard.cloud_domain) {
|
if (Settings.data.values.wizard.cloud_domain) {
|
||||||
$('.desktop-only').remove();
|
$('.desktop-only').remove();
|
||||||
$('.wizard-step').find('.back-button').hide();
|
$('.wizard-step:first').find('.back-button').hide();
|
||||||
|
|
||||||
steps = $('.wizard-step');
|
steps = $('.wizard-step');
|
||||||
$(steps).each(function(i) {
|
$(steps).each(function(i) {
|
||||||
|
|
Loading…
Reference in a new issue