-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
[0.8-preview] Boolean attribute change handlers are called before localDom
or lightDom
are available.
#1131
Comments
@sorvell Related to your |
Could we just suppress change notifications that occur before ready? I know
|
Would a scheduler that queued up change notifications fired prior to the lightDOM, localDOM and ready methods be desirable here? It could fire through the queue once they have finished initializing. I'd otherwise personally find notification suppression a little hard to debug. |
Since |
lightDom and localDom have been removed via 7c7e426. |
Configure is functioning according to the current design. Let's open a separate issue to discuss that if necessary. Closing this one. |
Considering the following contrived element built on 0.8-preview branch:
The first time
awesomeChanged
is called will happen beforethis.lightDom
andthis.localDom
have been initialized on the element. It will also be called before theready
lifecycle handler has been called, which may or may not be intentional, but seems undesirable on the surface.The text was updated successfully, but these errors were encountered: