Docs: We renamed appendChild to append, so update this example which still uses the old name.
Review URL: https://codereview.chromium.org/685063006
This commit is contained in:
parent
a4ed8ae0a8
commit
f9981b1300
@ -20,7 +20,7 @@ SKY MODULE - radio button and radio button group
|
|||||||
constructor (module) {
|
constructor (module) {
|
||||||
super(module);
|
super(module);
|
||||||
this.addEventListener('click', (event) => this.checked = true);
|
this.addEventListener('click', (event) => this.checked = true);
|
||||||
this.shadowRoot.appendChild(module.document.findId('radio-shadow').content.cloneNode(true));
|
this.shadowRoot.append(module.document.findId('radio-shadow').content.cloneNode(true));
|
||||||
}
|
}
|
||||||
get checked () {
|
get checked () {
|
||||||
return this.hasAttribute('checked');
|
return this.hasAttribute('checked');
|
||||||
@ -59,7 +59,7 @@ SKY MODULE - radio button and radio button group
|
|||||||
constructor: (class extends Element {
|
constructor: (class extends Element {
|
||||||
constructor (module) {
|
constructor (module) {
|
||||||
super(module);
|
super(module);
|
||||||
this.shadowRoot.appendChild(module.document.findId('radiogroup-shadow').content.cloneNode(true));
|
this.shadowRoot.append(module.document.findId('radiogroup-shadow').content.cloneNode(true));
|
||||||
}
|
}
|
||||||
get value () {
|
get value () {
|
||||||
let children = this.getChildNodes();
|
let children = this.getChildNodes();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user