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 super method is currently memoized on the function object. This can cause a problem when the same function object is used in multiple elements.
For example, if a polymer-element x-element is created that extends nothing and then a polymer-element x-input is created that extends input, x-input's bind method object is shared with x-element's. That means the super bind method is shared and therefore incorrect for one of them.
The text was updated successfully, but these errors were encountered:
The super method is currently memoized on the function object. This can cause a problem when the same function object is used in multiple elements.
For example, if a polymer-element x-element is created that extends nothing and then a polymer-element x-input is created that extends input, x-input's bind method object is shared with x-element's. That means the super bind method is shared and therefore incorrect for one of them.
The text was updated successfully, but these errors were encountered: