File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
utils/editors/js-console/html/output-console/v3.0 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 415415
416416 function clear ( ) {
417417
418- if ( chk . log . checked ) {
418+ if ( chk [ 'console-echo' ] . checked ) {
419419 con . clear . call ( window . console ) ;
420420 }
421421
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 ( ) ;
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
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 ) ;
You can’t perform that action at this time.
0 commit comments