mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
minor code review
This commit is contained in:
parent
abb89fd037
commit
0b6edab923
2 changed files with 2 additions and 2 deletions
|
|
@ -443,7 +443,7 @@ body[dir="rtl"] #netFilteringDialog .dialog > div.headers > span.tools {
|
|||
}
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar select {
|
||||
font: 14px;
|
||||
height: 2em;
|
||||
height: 2.5em;
|
||||
}
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar #saveRules {
|
||||
background-color: #ffe;
|
||||
|
|
|
|||
|
|
@ -349,7 +349,7 @@ Matrix.prototype.evaluateCellZ = function(srcHostname, desHostname, type) {
|
|||
this.z = s;
|
||||
v = this.rules[s + ' ' + desHostname];
|
||||
if ( v !== undefined ) {
|
||||
v = v >> bitOffset & 3;
|
||||
v = v >>> bitOffset & 3;
|
||||
if ( v !== 0 ) {
|
||||
this.r = v;
|
||||
return v;
|
||||
|
|
|
|||
Loading…
Reference in a new issue