Skip to content

Commit 8a413e6

Browse files
save file
1 parent 3040fc5 commit 8a413e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ <h4 slot=version>v3.0</h4>
418418

419419

420420
btn.syntax = function(){
421-
console.log('btn.syntax');
421+
debug('btn.syntax');
422422
var js = editor.getValue();
423423
var result = syntax(js);
424424
var str = JSON.stringify(result,null,4);
@@ -432,7 +432,7 @@ <h4 slot=version>v3.0</h4>
432432

433433

434434
btn.prettier = function(){
435-
435+
debug('btn.prettier');
436436
var js = editor.getvalue();
437437

438438
var options = {
@@ -469,7 +469,7 @@ <h4 slot=version>v3.0</h4>
469469

470470

471471
btn.terser = async function(){
472-
472+
debug('btn.terser');
473473
var js = editor.getvalue();
474474

475475
var options = {
@@ -509,7 +509,7 @@ <h4 slot=version>v3.0</h4>
509509

510510

511511
btn.obfuscator = function(){
512-
512+
debug('btn.obfuscator');
513513
var js = editor.getvalue();
514514

515515
var err;

0 commit comments

Comments
 (0)