Skip to content

Commit

Permalink
Rebuild Sources
Browse files Browse the repository at this point in the history
  • Loading branch information
evanplaice committed Nov 12, 2021
1 parent 0d9e942 commit 208da05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9707,14 +9707,14 @@ var WCCodeMirror = class extends HTMLElement {
}
constructor() {
super();
const template = document.createElement("template");
template.innerHTML = WCCodeMirror.template();
this.appendChild(template.content.cloneNode(true));
this.__initialized = false;
this.__element = null;
this.editor = null;
}
async connectedCallback() {
const template = document.createElement("template");
template.innerHTML = WCCodeMirror.template();
this.appendChild(template.content.cloneNode(true));
this.style.display = "block";
this.__element = this.querySelector("textarea");
const mode = this.hasAttribute("mode") ? this.getAttribute("mode") : "null";
Expand Down
2 changes: 1 addition & 1 deletion index.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 208da05

Please sign in to comment.