Skip to content

Commit 8567612

Browse files
authored
Quick typo fix
1 parent f6a4d50 commit 8567612

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

code-input.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ var codeInput = {
7575
this.ignoreValueUpdate = true;
7676
this.value = text; // Change value attribute if necessary.
7777
this.ignoreValueUpdate = false;
78-
if(this.querySelector("textarea").value != text) this.queryS
79-
this.querySelector("textarea").value = text;
78+
if(this.querySelector("textarea").value != text) this.querySelector("textarea").value = text;
8079

8180

8281
let result_element = this.querySelector("pre code");
@@ -420,4 +419,4 @@ var codeInput = {
420419
}
421420
}
422421

423-
customElements.define("code-input", codeInput.CodeInput); // Set tag
422+
customElements.define("code-input", codeInput.CodeInput); // Set tag

0 commit comments

Comments
 (0)