Skip to content

Commit e2921ef

Browse files
committed
disable remaining logging
1 parent 97229bc commit e2921ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/StardustDocs/cfg/resize-iframes.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@
7272
// console.log("el.contentWindow.performance.timing.loadEventEnd: " + el.contentWindow.performance.timing.loadEventEnd)
7373

7474
if (el.contentWindow && el.contentWindow.performance && el.contentWindow.performance.timing.loadEventEnd === 0) {
75-
console.log("ready path")
75+
// console.log("ready path")
7676
el.addEventListener('load', () => doObserveIFrame(el), true)
7777
} else {
78-
console.log("not ready path")
78+
// console.log("not ready path")
7979
doObserveIFrame(el)
8080
}
8181
}
@@ -90,9 +90,9 @@
9090
mutations.forEach(function (mutation) {
9191
for (let i = 0; i < mutation.addedNodes.length; i++) {
9292
let addedNode = mutation.addedNodes[i];
93-
console.log(addedNode.tagName)
93+
// console.log(addedNode.tagName)
9494
if (addedNode.tagName === 'IFRAME') {
95-
console.log("IFRAME loaded")
95+
// console.log("IFRAME loaded")
9696
observeIFrame(addedNode);
9797
} else if (addedNode.tagName === 'SECTION') {
9898
let iframes = [];

0 commit comments

Comments
 (0)