diff --git a/examples/radio.sky b/examples/radio.sky index 0cd15d04ff..5920e50e97 100644 --- a/examples/radio.sky +++ b/examples/radio.sky @@ -14,7 +14,7 @@ SKY MODULE - radio button and radio button group module.exports.RadioElement = sky.registerElement('radio', class extends Element { constructor () { this.addEventListener('click', (event) => this.checked = true); - this.createShadowTree().appendChild(module.document.findId('radio-shadow').cloneNode(true)); + this.createShadowTree().appendChild(module.document.findId('radio-shadow').content.cloneNode(true)); } get checked () { return this.hasAttribute('checked');