34 lines
1.0 KiB
JavaScript
34 lines
1.0 KiB
JavaScript
// Copyright 1999-2025. WebPros 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();
|
|
|
|
document.querySelectorAll('.title-area span[role="button"]').forEach(function(el) {
|
|
if (el.getAttribute('tabindex') === '0') {
|
|
el.setAttribute('tabindex', '-1');
|
|
el.setAttribute('aria-hidden', 'true');
|
|
}
|
|
});
|
|
});
|