Merge pull request #16284 from roxanneskelly/dev653

DEV-653 - give warning not to change address for cloud domains
This commit is contained in:
Shannon Romano 2019-10-04 11:54:30 -07:00 committed by GitHub
commit 15394f7a6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View file

@ -136,6 +136,23 @@ function getCurrentDomainIDType() {
return DOMAIN_ID_TYPE_UNKNOWN;
}
function isCloudDomain() {
if (!domainIDIsSet()) {
return false;
}
if (typeof DomainInfo === 'undefined') {
return false;
}
if (DomainInfo === null) {
return false;
}
if (typeof DomainInfo.cloud_domain !== "boolean") {
return false;
}
return DomainInfo.cloud_domain;
}
function showLoadingDialog(msg) {
var message = '<div class="text-center">';
message += '<span class="glyphicon glyphicon-refresh glyphicon-refresh-animate"></span> ' + msg;

View file

@ -606,6 +606,9 @@ $(document).ready(function(){
var address = DomainInfo.network_address === null ? '' : DomainInfo.network_address;
var port = DomainInfo.network_port === null ? '' : DomainInfo.network_port;
var modal_body = "<div class='form-group'>";
if (isCloudDomain()) {
modal_body += '<div style="color:red;font-weight: bold">Changing the network settings may actually break your domain.</div>';
}
if (includeAddress) {
modal_body += "<label class='control-label'>Address</label>";
modal_body += "<input type='text' id='network-address-input' class='form-control' value='" + address + "'>";