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
The if direction here is ignored. Likewise other template directives repeat and bind are ignored.
This has been a source of confusion for users. Polymer should either (1) warn if these directives are used where they will not apply or (2) wrap the template to make this work.
The text was updated successfully, but these errors were encountered:
Another variant would be something more explicit which controls the lifecycle of element. IOW, don't continue boot-up until a given data value is available. I've seen lots of code with filters on the element impl which has to check for bogus values being handed in because it gets run before the element has received any real data.
Given:
The
if
direction here is ignored. Likewise other template directivesrepeat
andbind
are ignored.This has been a source of confusion for users. Polymer should either (1) warn if these directives are used where they will not apply or (2) wrap the template to make this work.
The text was updated successfully, but these errors were encountered: