mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-24 21:27:40 +02:00
add a warning for cloud domain ID changes
This commit is contained in:
parent
87cac67c75
commit
b2bd0d99de
1 changed files with 8 additions and 6 deletions
|
@ -18,9 +18,6 @@ $(document).ready(function(){
|
||||||
Settings.extraGroupsAtIndex = Settings.extraDomainGroupsAtIndex;
|
Settings.extraGroupsAtIndex = Settings.extraDomainGroupsAtIndex;
|
||||||
|
|
||||||
Settings.afterReloadActions = function() {
|
Settings.afterReloadActions = function() {
|
||||||
// append the domain selection modal
|
|
||||||
appendDomainIDButtons();
|
|
||||||
|
|
||||||
// call our method to setup the HF account button
|
// call our method to setup the HF account button
|
||||||
setupHFAccountButton();
|
setupHFAccountButton();
|
||||||
|
|
||||||
|
@ -52,6 +49,11 @@ $(document).ready(function(){
|
||||||
if (cloudWizardExit != undefined) {
|
if (cloudWizardExit != undefined) {
|
||||||
$('#cloud-domains-alert').show();
|
$('#cloud-domains-alert').show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$(Settings.DOMAIN_ID_SELECTOR).siblings('span').append("</br><strong>Changing the domain ID for a Cloud Domain may result in an incorrect status for the domain on your Cloud Domains page.</strong>");
|
||||||
|
} else {
|
||||||
|
// append the domain selection modal
|
||||||
|
appendDomainIDButtons();
|
||||||
}
|
}
|
||||||
|
|
||||||
handleAction();
|
handleAction();
|
||||||
|
@ -59,9 +61,9 @@ $(document).ready(function(){
|
||||||
|
|
||||||
Settings.handlePostSettings = function(formJSON) {
|
Settings.handlePostSettings = function(formJSON) {
|
||||||
|
|
||||||
if (!verifyAvatarHeights()) {
|
if (!verifyAvatarHeights()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if we've set the basic http password
|
// check if we've set the basic http password
|
||||||
if (formJSON["security"]) {
|
if (formJSON["security"]) {
|
||||||
|
|
Loading…
Reference in a new issue