mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-26 22:20:19 +00:00
remove logs from interpreter
This commit is contained in:
parent
cb7e4f3f27
commit
d2b5af6615
1 changed files with 0 additions and 3 deletions
|
@ -144,8 +144,6 @@ class Interpreter {
|
|||
this.nodes[root].textContent = text;
|
||||
}
|
||||
SetAttribute(id, field, value, ns) {
|
||||
console.log("set attribute", id, field, value, ns);
|
||||
|
||||
if (value === null) {
|
||||
this.RemoveAttribute(id, field, ns);
|
||||
}
|
||||
|
@ -228,7 +226,6 @@ class Interpreter {
|
|||
}
|
||||
|
||||
MakeTemplateNode(node) {
|
||||
console.log("making template node", node);
|
||||
switch (node.type) {
|
||||
case "Text":
|
||||
return document.createTextNode(node.text);
|
||||
|
|
Loading…
Reference in a new issue