mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
regression
This commit is contained in:
parent
4415bb60ef
commit
3e084455a7
1 changed files with 5 additions and 6 deletions
|
|
@ -243,12 +243,6 @@ Matrix.prototype.evaluateCellZ = function(srcHostname, desHostname, type) {
|
||||||
|
|
||||||
Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) {
|
Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) {
|
||||||
this.r = 0;
|
this.r = 0;
|
||||||
|
|
||||||
if ( supportedTypes.hasOwnProperty(type) === false ) {
|
|
||||||
this.type = '';
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.type = '*';
|
this.type = '*';
|
||||||
|
|
||||||
// Specific-destination + any type
|
// Specific-destination + any type
|
||||||
|
|
@ -267,6 +261,11 @@ Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Any destination + specific-type
|
// Any destination + specific-type
|
||||||
|
if ( supportedTypes.hasOwnProperty(type) === false ) {
|
||||||
|
this.type = '';
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
this.y = '*';
|
this.y = '*';
|
||||||
|
|
||||||
if ( type === 'script' ) {
|
if ( type === 'script' ) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue