Fixed incorrect description in the settings (#1622)
This commit is contained in:
parent
760c083f29
commit
0e0bd4172e
|
@ -88,6 +88,10 @@ optionsAdvanced.init = function (opt) {
|
|||
negateHtmlFilterList = options.getOptionElement(Setting.NEGATE_HTML_FILTER_LIST);
|
||||
negateHtmlFilterList.addEventListener('change', options.onOptionChanged);
|
||||
negateHtmlFilterList.checked = opt[Setting.NEGATE_HTML_FILTER_LIST];
|
||||
if (opt[Setting.NEGATE_HTML_FILTER_LIST] === false) {
|
||||
document.getElementById('html-filter-domains-title-include').style.display = 'block';
|
||||
document.getElementById('html-filter-domains-title-exclude').style.display = 'none';
|
||||
}
|
||||
|
||||
changeBadgeColorMissingResources = options.getOptionElement(Setting.CHANGE_BADGE_COLOR_MISSING_RESOURCES);
|
||||
changeBadgeColorMissingResources.addEventListener('change', options.onOptionChanged);
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
<p>Improved</p>
|
||||
<ul>
|
||||
<li>Support wildcard TLD in all lists (<a href="https://codeberg.org/nobody/LocalCDN/issues/1622">#1622</a>)</li>
|
||||
<li>Fixed incorrect description in the settings (<a href="https://codeberg.org/nobody/LocalCDN/issues/1622">#1622</a>)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="generator-section">
|
||||
|
|
Loading…
Reference in New Issue