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 problem is that the context for if ready is the top level context, not foo.
I'm motivated to fix this, but could use a hint. My guess is that the context stack is backwards or that the with helper should be able to set this instead of just the context argument.
The text was updated successfully, but these errors were encountered:
The problem with this is with the context(s) that the with helper passes. I'm looking into a solution, but this might require the with helper to be implemented in a different way (maybe just treat it exactly as a Mustache section instead of implementing it as a helper).
In the meantime, you can use regular Mustache syntax as a workaround:
Here's a test case:
Here's the template:
The problem is that the context for
if ready
is the top level context, not foo.I'm motivated to fix this, but could use a hint. My guess is that the context stack is backwards or that the with helper should be able to set
this
instead of just the context argument.The text was updated successfully, but these errors were encountered: