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
Something like: {{ this.todo.isSaving() }}
{{ this.todo.isSaving() }}
Doesn't work if this.todo is updated but the same .isSaving method exists on both.
this.todo
.isSaving
Example: https://codepen.io/justinbmeyer/pen/ReeLaq?editors=1010
The text was updated successfully, but these errors were encountered:
Shouldn't the whole expression re-evaluate in this case?
Sorry, something went wrong.
canjs/can-view-scope@870ea2b
@matthewp well, it depends on what "whole expression" means ...
a.outerCall( b.innerCall( c.superInner( arg1) ) )
If a changed in a.outerCall, we should not re-evaluate any of b.innerCall( c.superInner( arg1) ).
a
a.outerCall
b.innerCall( c.superInner( arg1) )
tests and fixes #616
b9bfba3
No branches or pull requests
Something like:
{{ this.todo.isSaving() }}
Doesn't work if
this.todo
is updated but the same.isSaving
method exists on both.Example: https://codepen.io/justinbmeyer/pen/ReeLaq?editors=1010
The text was updated successfully, but these errors were encountered: