mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 09:43:17 +02:00
Temporalily disabled congratulations page and fixed threading setup step in domain wizard
This commit is contained in:
parent
0dbe1bcfcd
commit
b1a96cdce2
2 changed files with 5 additions and 3 deletions
|
@ -191,7 +191,7 @@
|
|||
</dl>
|
||||
</div>
|
||||
|
||||
<div class="wizard-step col-md-8 col-centered" style="display: none;">
|
||||
<div class="wizard-step cloud-only col-md-8 col-centered" style="display: none;">
|
||||
<h4 class="step-title"></h4>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
@ -216,11 +216,12 @@
|
|||
<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-threading-settings" type="button" class="btn btn-md btn-block btn-primary">Finish</button>
|
||||
<button id="save-threading-settings" type="button" class="btn btn-md btn-block btn-primary next-button">Finish</button>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div id="congratulation-step" class="wizard-step cloud-only col-xs-12 col-centered" style="display: none;">
|
||||
<div class="row">
|
||||
<div class="col-xs-10 col-xs-offset-1">
|
||||
|
@ -285,6 +286,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<!--#include virtual="footer.html"-->
|
||||
<script src='/js/underscore-min.js'></script>
|
||||
|
|
|
@ -149,7 +149,7 @@ function setupWizardSteps() {
|
|||
|
||||
steps = $('.wizard-step');
|
||||
$(steps).each(function(i) {
|
||||
$(this).children(".step-title").text("Step " + (i + 1) + " of " + (steps.length - 1));
|
||||
$(this).children(".step-title").text("Step " + (i + 1) + " of " + (steps.length));
|
||||
});
|
||||
|
||||
$('#permissions-description').html('You <span id="username-display"></span>have been assigned administrator privileges to this domain.');
|
||||
|
|
Loading…
Reference in a new issue