1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 18:19:38 +02:00

regression

This commit is contained in:
gorhill 2015-01-07 18:38:05 -05:00
parent 4415bb60ef
commit 3e084455a7

View File

@ -243,12 +243,6 @@ Matrix.prototype.evaluateCellZ = function(srcHostname, desHostname, type) {
Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) {
this.r = 0;
if ( supportedTypes.hasOwnProperty(type) === false ) {
this.type = '';
return this;
}
this.type = '*';
// Specific-destination + any type
@ -267,6 +261,11 @@ Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) {
}
// Any destination + specific-type
if ( supportedTypes.hasOwnProperty(type) === false ) {
this.type = '';
return this;
}
this.y = '*';
if ( type === 'script' ) {