1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

code review: important filter option senseless for exception filters

This commit is contained in:
gorhill 2015-06-06 18:45:30 -04:00
parent 2d27cc28ce
commit 91cb61ce9c

View File

@ -658,19 +658,15 @@ var filteringDialog = (function() {
var parseStaticInputs = function() {
var filter = '';
var value;
value = selectValue('select.static.action');
if ( value !== '' ) {
var options = [];
var block = selectValue('select.static.action') === '';
if ( !block ) {
filter = '@@';
}
value = selectValue('select.static.url');
var value = selectValue('select.static.url');
if ( value !== '' ) {
filter += '||' + value;
}
var options = [];
if ( selectValue('select.static.importance') !== '' ) {
options.push('important');
}
value = selectValue('select.static.type');
if ( value !== '' ) {
options.push(uglyTypeFromSelector('static'));
@ -683,6 +679,9 @@ var filteringDialog = (function() {
options.push('domain=' + value);
}
}
if ( block && selectValue('select.static.importance') !== '' ) {
options.push('important');
}
if ( options.length ) {
filter += '$' + options.join(',');
}