aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/devtool-log.js
diff options
context:
space:
mode:
authorgorhill <rhill@raymondhill.net>2015-05-03 11:58:31 -0400
committergorhill <rhill@raymondhill.net>2015-05-03 11:58:31 -0400
commit7ffbfdaf101f8758a2e7d2b6e23a8bb4984eac35 (patch)
tree302bb6e7c881783788edec3b7e155dd13e5cc89b /src/js/devtool-log.js
parent5f4d97596698b32763b54d50d5c75cc989148fb5 (diff)
downloaduBlock-7ffbfdaf101f8758a2e7d2b6e23a8bb4984eac35.zip
uBlock-7ffbfdaf101f8758a2e7d2b6e23a8bb4984eac35.tar.gz
uBlock-7ffbfdaf101f8758a2e7d2b6e23a8bb4984eac35.tar.bz2
code review
Diffstat (limited to 'src/js/devtool-log.js')
-rw-r--r--src/js/devtool-log.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/js/devtool-log.js b/src/js/devtool-log.js
index bcac3a5..3129023 100644
--- a/src/js/devtool-log.js
+++ b/src/js/devtool-log.js
@@ -156,18 +156,11 @@ var renderLogEntry = function(entry) {
tr.cells[0].textContent = ' -\u00A0';
} else if ( entry.result.charAt(1) === 'a' ) {
tr.classList.add('allowed');
- if ( entry.result.charAt(0) === 'm' ) {
- tr.classList.add('mirrored');
- }
tr.cells[0].textContent = ' +\u00A0';
} else {
tr.cells[0].textContent = '';
}
- if ( entry.type === 'main_frame' ) {
- tr.classList.add('maindoc');
- }
-
var filterText = entry.result.slice(3);
if ( entry.result.lastIndexOf('sa', 0) === 0 ) {
filterText = '@@' + filterText;