diff --git a/src/checkboxes.html b/src/checkboxes.html index 101199e..b0dceb6 100644 --- a/src/checkboxes.html +++ b/src/checkboxes.html @@ -21,37 +21,63 @@
+
+
++ +
++ +
++ +
++
@@ -60,45 +86,71 @@ Copied! content_copy
-
-
+
diff --git a/src/main.ts b/src/main.ts
index 5744d3d..a1a9f2f 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -179,6 +179,8 @@ document.addEventListener("DOMContentLoaded", () => {
// Set checkbox on forms.html to indeterminate
const indeterminateCheckbox = document.getElementById("indeterminate-checkbox");
if (indeterminateCheckbox !== null) (indeterminateCheckbox as any).indeterminate = true;
+ const indeterminateCheckbox2 = document.getElementById("indeterminate-checkbox2");
+ if (indeterminateCheckbox2 !== null) (indeterminateCheckbox2 as any).indeterminate = true;
// CSS Transitions Demo Init
const scaleDemoElem = document.querySelector("#scale-demo");