Skip to content

Commit f48b230

Browse files
authored
Merge pull request #30 from mitchcapper/supress_update_to_console_pr
Don't do console.log on every update
2 parents 39ed4e2 + c9024a4 commit f48b230

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code-input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ var codeInput = {
7474
// been run). Thank you to peterprvy for this.
7575
if(this.ignoreValueUpdate) return;
7676

77-
console.log("Update", text);
77+
//console.log("Update", text);
7878
this.ignoreValueUpdate = true;
7979
this.value = text; // Change value attribute if necessary.
8080
this.ignoreValueUpdate = false;

0 commit comments

Comments
 (0)