Files
server/opt/psa/admin/htdocs/modules/panel-migrator/scripts/settings.js
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

26 lines
813 B
JavaScript

// Copyright 1999-2017. Plesk International GmbH. All Rights Reserved.
Jsw.onReady(function() {
var postChecksEnabledCheckbox = $('postChecksSettings-performPostMigrationChecks');
function updatePostCheckControls() {
var controls = [
$('postChecksSettings-externalDns'),
$('postChecksSettings-mailMessagesDeltaLimit'),
$('postChecksSettings-websiteAvailabilityCheckTimeout')
];
for (var i = 0; i < controls.length; i++) {
if (postChecksEnabledCheckbox.checked) {
controls[i].enable();
} else {
controls[i].disable();
}
}
}
postChecksEnabledCheckbox.observe('change', function() {
updatePostCheckControls();
});
updatePostCheckControls();
});