Skip to content

Commit 2a10d14

Browse files
save file
1 parent 1fbe25f commit 2a10d14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

utils/editors/js-console/html/output-console/v3.0/output-console-v3.0.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@
415415

416416
function clear(){
417417

418-
if(chk.log.checked){
418+
if(chk['console-echo'].checked){
419419
con.clear.call(window.console);
420420
}
421421

@@ -429,7 +429,7 @@
429429

430430
function log(){
431431

432-
if(chk.log.checked){
432+
if(chk['console-echo'].checked){
433433
//con.log.apply(window.console,arguments);
434434
window.console.groupCollapsed.apply(window.console,arguments);
435435
window.console.trace();
@@ -464,7 +464,7 @@
464464

465465
function groupCollapsed(...args){
466466

467-
if(chk.log.checked){
467+
if(chk['console-echo'].checked){
468468
window.console.groupCollapsed.apply(window.console,args);
469469
}
470470

@@ -480,7 +480,7 @@
480480

481481
function error(){
482482

483-
if(chk.log.checked){
483+
if(chk['console-echo'].checked){
484484
con.error.apply(window.console,arguments);
485485
}
486486
var node = log.apply(null,arguments);

0 commit comments

Comments
 (0)