simple-ui-builder
Advanced tools
Comparing version 1.0.32 to 1.0.33
{ | ||
"name": "simple-ui-builder", | ||
"version": "1.0.32", | ||
"version": "1.0.33", | ||
"description": "Build user interface like Lego bricks. UI.input(), UI.button(cb), UI.select(arr) etc. For lazy guys as I am.", | ||
@@ -5,0 +5,0 @@ "main": "ui.js", |
@@ -847,2 +847,7 @@ /** | ||
} else if (/<input.+?>/.test(cell)) { | ||
td.appendChild(new DOMParser() | ||
.parseFromString(cell, "text/html") | ||
.querySelector("input")); | ||
} else { | ||
@@ -849,0 +854,0 @@ td.appendChild(document.createTextNode(cell)); |
26610
676