You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created a custom element (named resource-pooled) that has the skipContentProcessing metadata added. However, in the constructor of the ResourcePooled behavior class, if I inspect the node, I see the following:
The original html:
<resource-pooled><div>I am so testing pooling here...</div><div>Title (bound value): ${post.title}</div></resource-pooled>
I would expect the html to maintain the interpolation-string (so that I can compile it myself), rather than having injected a value.
The text was updated successfully, but these errors were encountered:
…rsed
This commit fixes issue #21. When a custom element indicates that its
content should not be processed, the view compiled will not traverse
the child nodes at all. Full responsibility is passed to the
implementor of the custom element.
I created a custom element (named
resource-pooled
) that has theskipContentProcessing
metadata added. However, in the constructor of theResourcePooled
behavior class, if I inspect the node, I see the following:The original html:
I would expect the html to maintain the interpolation-string (so that I can compile it myself), rather than having injected a value.
The text was updated successfully, but these errors were encountered: