diff --git a/examples/radio.sky b/examples/radio.sky index a253af3121..ec666d9ec9 100644 --- a/examples/radio.sky +++ b/examples/radio.sky @@ -13,6 +13,7 @@ SKY MODULE - radio button and radio button group module.exports = {}; module.exports.RadioElement = sky.registerElement('radio', class extends Element { constructor () { + super(); this.addEventListener('click', (event) => this.checked = true); this.addShadowRoot(new sky.ShadowRoot(module.document.findId('radio-shadow').content.cloneNode(true))); } @@ -48,6 +49,7 @@ SKY MODULE - radio button and radio button group