Exclude rules in tooltips

This commit is contained in:
narcolepticinsomniac 2019-06-03 07:51:46 -04:00 committed by GitHub
parent f7e789e4b2
commit cfa7e6523e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -337,6 +337,9 @@ function createStyleElement(style) {
$('.exclude-by-domain-checkbox', entry).checked = styleExcluded(style, 'domain');
$('.exclude-by-url-checkbox', entry).checked = styleExcluded(style, 'url');
$('.exclude-by-domain', entry).title = getExcludeRule('domain');
$('.exclude-by-url', entry).title = getExcludeRule('url');
return entry;
}