Skip to content

Commit

Permalink
deploy: f969c29
Browse files Browse the repository at this point in the history
  • Loading branch information
harshdoesdev committed Feb 8, 2024
1 parent 8a2d9c1 commit 9c4475e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2860,6 +2860,7 @@ class Node2 {
default:
this.attachAttribute("checked", staticValue);
}
if (!ssr) this.#node.checked = staticValue;
} else if (kind === fastn_dom.PropertyKind.Enabled) {
switch (staticValue) {
case "false":
Expand Down Expand Up @@ -3965,6 +3966,9 @@ let fastn_utils = {
getNodeValue(node) {
return node.getNode().value;
},
getNodeCheckedState(node) {
return node.getNode().checked;
},
setFullHeight() {
if (!ssr) {
document.body.style.height = `max(${document.documentElement.scrollHeight}px, 100%)`;
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<script src="markdown-24E09EFC0C2B9A11DEA9AC71888EB3A1E85864FA7D9C95A3EB5075A0E0F49A5F.js"></script>
<script src="prism-8FE3A42AD547E2DBBC9FE16BA059F8F1870D613AD0C5B0B013D6205B72A62BAF.js"></script>
<script src="default-ABB8E6F4CDE4AF3616A382CF84399F04ECC0F8B802DDED7E589157C96B0EED18.js"></script>
<script src="default-796BC097AB998CD5A64E7A275131D0E9485908FFF658D1469013613BF25CB9ED.js"></script>
<link rel="stylesheet" href="prism-73F718B9234C00C5C14AB6A11BF239A103F0B0F93B69CD55CB5C6530501182EB.css">


Expand Down

0 comments on commit 9c4475e

Please sign in to comment.