We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6a4d50 commit 8567612Copy full SHA for 8567612
code-input.js
@@ -75,8 +75,7 @@ var codeInput = {
75
this.ignoreValueUpdate = true;
76
this.value = text; // Change value attribute if necessary.
77
this.ignoreValueUpdate = false;
78
- if(this.querySelector("textarea").value != text) this.queryS
79
- this.querySelector("textarea").value = text;
+ if(this.querySelector("textarea").value != text) this.querySelector("textarea").value = text;
80
81
82
let result_element = this.querySelector("pre code");
@@ -420,4 +419,4 @@ var codeInput = {
420
419
}
421
422
423
-customElements.define("code-input", codeInput.CodeInput); // Set tag
+customElements.define("code-input", codeInput.CodeInput); // Set tag
0 commit comments