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
Steps to reproduce:
Uncaught RangeError: Maximum call stack size exceeded.
Below is some sample code that returns error when parent-el is instantiated.
<dom-module id="child-el"> <template>{{value}}</template> </dom-module> <script> (function() { Polymer({ is: 'child-el', properties: { value: { value: null, notify: true } } }); }()); </script> <dom-module id="parent-el"> <template><child-el value="{{numvalue}}"></child-el></template> </dom-module> <script> (function() { Polymer({ is: 'parent-el', properties: { numvalue: { value: NaN, notify: true } } }); }()); </script>
The text was updated successfully, but these errors were encountered:
Handle NaN in bindings
c85a2df
Make our own equality check for NaN that uses the identity-check failure Fixes #1799
8a964ba
dcb67ed
48edb32
No branches or pull requests
Steps to reproduce:
Uncaught RangeError: Maximum call stack size exceeded.
Below is some sample code that returns error when parent-el is instantiated.
The text was updated successfully, but these errors were encountered: