Skip to content

Commit

Permalink
reduce logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mart2070 committed May 3, 2024
1 parent 86232c6 commit b39a0ca
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@

function parseTable(mutation) {
let t = mutation.target;
console.error("BEGIN MUTATION")
//console.error("BEGIN MUTATION")
let table = t.querySelector("table.report-viewer")
let items = [];

Expand Down Expand Up @@ -180,14 +180,16 @@

item.row = row
items.push(item)
console.log("ITEM:",item)
//console.log("ITEM:",item)

//being coloring
parseItem(item)
})

//update panel heading above table
updateHeading(t.parentElement,items.length)

console.log("Items:",items)
}
}

Expand Down Expand Up @@ -323,7 +325,7 @@
if (element.tagName == "IFRAME") {
let frame = element.contentWindow.document

console.log("Found iFrame:",frame)
//console.log("Found iFrame:",frame)

//check for existing style block
if (!frame.querySelector("#customStyles")) {
Expand Down

0 comments on commit b39a0ca

Please sign in to comment.