1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-26 10:01:08 +12:00

code review

This commit is contained in:
Raymond Hill 2014-11-22 09:36:45 -02:00
parent 9a93c2375c
commit bf5b6c4517

View file

@ -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;
};