mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 20:23:06 +02:00
Hide temp place name button, hide places table, hide places wizard step.
This commit is contained in:
parent
89c006d190
commit
2e75166e0d
2 changed files with 10 additions and 7 deletions
|
@ -40,6 +40,8 @@ $(document).ready(function(){
|
||||||
|
|
||||||
// call our method to setup the place names table
|
// call our method to setup the place names table
|
||||||
setupPlacesTable();
|
setupPlacesTable();
|
||||||
|
// hide the places table for now because we do not want that interacted with from the domain-server
|
||||||
|
$('#' + Settings.PLACES_TABLE_ID).hide();
|
||||||
|
|
||||||
setupDomainNetworkingSettings();
|
setupDomainNetworkingSettings();
|
||||||
// setupDomainLabelSetting();
|
// setupDomainLabelSetting();
|
||||||
|
@ -711,8 +713,8 @@ $(document).ready(function(){
|
||||||
name: 'places',
|
name: 'places',
|
||||||
label: 'Places',
|
label: 'Places',
|
||||||
html_id: Settings.PLACES_TABLE_ID,
|
html_id: Settings.PLACES_TABLE_ID,
|
||||||
help: "The following places currently point to this domain.</br>To point places to this domain, "
|
help: "To point places to this domain, "
|
||||||
+ " go to the <a href='" + METAVERSE_URL + "/user/places'>My Places</a> "
|
+ " go to the <a href='" + METAVERSE_URL + "/user/places'>Places</a> "
|
||||||
+ "page in your Metaverse account.",
|
+ "page in your Metaverse account.",
|
||||||
read_only: true,
|
read_only: true,
|
||||||
can_add_new_rows: false,
|
can_add_new_rows: false,
|
||||||
|
@ -745,9 +747,10 @@ $(document).ready(function(){
|
||||||
var errorEl = createDomainLoadingError("There was an error retrieving your places.");
|
var errorEl = createDomainLoadingError("There was an error retrieving your places.");
|
||||||
$("#" + Settings.PLACES_TABLE_ID).after(errorEl);
|
$("#" + Settings.PLACES_TABLE_ID).after(errorEl);
|
||||||
|
|
||||||
var temporaryPlaceButton = dynamicButton(Settings.GET_TEMPORARY_NAME_BTN_ID, 'Get a temporary place name');
|
// DISABLE TEMP PLACE NAME BUTTON...
|
||||||
temporaryPlaceButton.hide();
|
// var temporaryPlaceButton = dynamicButton(Settings.GET_TEMPORARY_NAME_BTN_ID, 'Get a temporary place name');
|
||||||
$('#' + Settings.PLACES_TABLE_ID).after(temporaryPlaceButton);
|
// temporaryPlaceButton.hide();
|
||||||
|
// $('#' + Settings.PLACES_TABLE_ID).after(temporaryPlaceButton);
|
||||||
if (accessTokenIsSet()) {
|
if (accessTokenIsSet()) {
|
||||||
appendAddButtonToPlacesTable();
|
appendAddButtonToPlacesTable();
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="wizard-step col-md-8 col-centered" style="display: none;">
|
<!-- <div class="wizard-step col-md-8 col-centered" style="display: none;">
|
||||||
<h4 class="step-title"></h4>
|
<h4 class="step-title"></h4>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
<button type="button" class="btn btn-md btn-block btn-primary next-button">Next</button>
|
<button type="button" class="btn btn-md btn-block btn-primary next-button">Next</button>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
<div class="wizard-step col-md-9 col-centered" style="display: none;">
|
<div class="wizard-step col-md-9 col-centered" style="display: none;">
|
||||||
<h4 class="step-title"></h4>
|
<h4 class="step-title"></h4>
|
||||||
|
|
Loading…
Reference in a new issue