Skip to content
Snippets Groups Projects
Commit 269c43c8 authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Add select all selector to dbp-lit-element

parent 7e040c97
No related branches found
No related tags found
No related merge requests found
Pipeline #116379 passed
......@@ -31,6 +31,12 @@ export default class DBPLitElement extends AdapterLitElement {
: this.shadowRoot.querySelector(selector);
}
_a(selector) {
return this.shadowRoot === null
? this.querySelectorAll(selector)
: this.shadowRoot.querySelectorAll(selector);
}
firstUpdated() {
super.firstUpdated();
this._renderDone = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment