We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note, the live chromestatus.com is using an old version of polymer. You won't be able to repo this there.
When the list of features is filtered, I have a method that queries the shadow root:
filteredChanged: function() { this.asyncMethod(function() { featureLiList_ = this.shadowRoot.querySelectorAll('li'); // returns 0 nodes }); },
code here
this.shadowRoot.querySelectorAll('li') is now returning 0 nodes.
this.shadowRoot.querySelectorAll('li')
Running document.querySelector('chromedash-featurelist').shadowRoot.querySelectorAll('li') confirms this.
document.querySelector('chromedash-featurelist').shadowRoot.querySelectorAll('li')
The text was updated successfully, but these errors were encountered:
This may be related to Polymer/ShadowDOM#235
Sorry, something went wrong.
Fixed with the updates from https://github.com/Polymer/ShadowDOM/issues/235
No branches or pull requests
Note, the live chromestatus.com is using an old version of polymer. You won't be able to repo this there.
When the list of features is filtered, I have a method that queries the shadow root:
code here
this.shadowRoot.querySelectorAll('li')
is now returning 0 nodes.Running
document.querySelector('chromedash-featurelist').shadowRoot.querySelectorAll('li')
confirms this.The text was updated successfully, but these errors were encountered: