1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 18:19:38 +02:00
This commit is contained in:
gorhill 2015-01-10 11:44:37 -05:00
parent 80ef8f3777
commit a3d166d18e

View File

@ -226,6 +226,9 @@ var updateDynamicFilterCell = function(scope, des, type, rule) {
var updateAllDynamicFilters = function() {
var rules = popupData.dynamicFilterRules;
for ( var key in rules ) {
if ( rules.hasOwnProperty(key) === false ) {
continue;
}
updateDynamicFilterCell(
key.charAt(0),
key.slice(2, key.indexOf(' ', 2)),
@ -512,7 +515,7 @@ var setDynamicFilterHandler = function() {
if ( hotspotId === 'dynaAllow' ) {
action = 2;
} else if ( hotspotId === 'dynaNoop' ) {
action = 3
action = 3;
} else {
action = 1;
}