code review

pull/2/head
Raymond Hill 10 years ago
parent 9a93c2375c
commit bf5b6c4517

@ -359,12 +359,6 @@ Matrix.prototype.evaluateCell = function(srcHostname, desHostname, type) {
/******************************************************************************/
Matrix.prototype.evaluateCellZ = function(srcHostname, desHostname, type) {
// https://github.com/gorhill/uMatrix/issues/65
// Hardcoded `doc` rule
if ( srcHostname === '*' && desHostname === '*' && type === 'doc' ) {
return 2;
}
var bitOffset = typeBitOffsets[type];
var s = srcHostname;
var v;
@ -386,6 +380,11 @@ Matrix.prototype.evaluateCellZ = function(srcHostname, desHostname, type) {
if ( type === '*' && µm.ubiquitousBlacklist.test(desHostname) ) {
return 1;
}
// https://github.com/gorhill/uMatrix/issues/65
// Hardcoded `doc` rule
if ( type === 'doc' && desHostname === '*' ) {
return 2;
}
return 0;
};

Loading…
Cancel
Save