Skip to content

Commit 21c29a6

Browse files
meyerwebWestbrook
andauthored
Update reference-target-explainer.md (#1119)
* Update reference-target-explainer.md Fix example JS * Update proposals/reference-target-explainer.md Co-authored-by: Westbrook Johnson <[email protected]> --------- Co-authored-by: Westbrook Johnson <[email protected]>
1 parent b79d51e commit 21c29a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proposals/reference-target-explainer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ This can improve the experience of using the components described in the [Backgr
294294
this.shadowRoot_.innerHTML = `
295295
<input id="input"
296296
type="checkbox"
297-
${checked == "true" ? "checked" : ""}
298-
aria-checked=${checked == "indeterminate" ? "mixed" : checked}>
297+
${this.checked == "true" ? "checked" : ""}
298+
aria-checked=${this.checked == "indeterminate" ? "mixed" : this.checked}>
299299
<span id="box"></span>`;
300300
}
301301
}

0 commit comments

Comments
 (0)