Skip to content

Instantly share code, notes, and snippets.

@tonimc
Created August 9, 2017 08:35
Show Gist options
  • Select an option

  • Save tonimc/012c4f48c08fa3ca244984a2bebfd1f4 to your computer and use it in GitHub Desktop.

Select an option

Save tonimc/012c4f48c08fa3ca244984a2bebfd1f4 to your computer and use it in GitHub Desktop.
_getItems() {
return this.shadowRoot.querySelector('slot')
.assignedNodes({flatten:true})
.filter(n => {
return n.nodeType === Node.ELEMENT_NODE
&& n.localName === 'ibm-q-accordion-item';
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment