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
This seems to be a bug
See http://jsbin.com/ilinax/1/edit
This throws TypeError: Cannot read property 'childNodes' of null
If you remove this piece of code:
{{#state.loading}} Loading {{/state.loading}}
It works.
If you remove the table it works.
But the combination of the two blocks throws.
The text was updated successfully, but these errors were encountered:
Another example http://jsbin.com/unigav/2/
Sorry, something went wrong.
Also in EJS http://jsbin.com/unigav/3/
You need a wrapping element around live text elements. Something like:
<span> {{#state.loading}} Loading {{/state.loading}} </span>
otherwise, we have no parent element to update the live part relative to. We might be able to fix this by modifying the document fragment temporarily.
Should we throw a dev mode warning for this, or try to code a workaround?
ccummings
No branches or pull requests
This seems to be a bug
See
http://jsbin.com/ilinax/1/edit
This throws TypeError: Cannot read property 'childNodes' of null
If you remove this piece of code:
It works.
If you remove the table it works.
But the combination of the two blocks throws.
The text was updated successfully, but these errors were encountered: