| 1 |
/* global jQuery */ |
| 2 |
(function ($) { |
| 3 |
$('#powered_cache_specific_critical_css').on('change', function () { |
| 4 |
if ($(this).is(':checked')) { |
| 5 |
$('#powered_cache_disable_critical_css').attr('disabled', 'disbled'); |
| 6 |
} else { |
| 7 |
$('#powered_cache_disable_critical_css').removeAttr('disabled'); |
| 8 |
} |
| 9 |
}); |
| 10 |
|
| 11 |
$('#powered_cache_disable_critical_css').on('change', function () { |
| 12 |
if ($(this).is(':checked')) { |
| 13 |
$('#powered_cache_specific_critical_css').attr('disabled', 'disbled'); |
| 14 |
} else { |
| 15 |
$('#powered_cache_specific_critical_css').removeAttr('disabled'); |
| 16 |
} |
| 17 |
}); |
| 18 |
})(jQuery); |
| 19 |
|