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
Is {shared: true} actually used anywhere? I can't see it in the code..
Also, did you think of how to get this work when helpers are called with parameters?
I refactored this a bit so it works with parameters.. but then the last call to a helper changes the values for all
For example, if I have a helperName in a template like so:
{{helperName "test"}}
{{helperName "test2"}}
both helpers endup returning the result of {{helperName "test2"}}
I thought the shared: false could help with this..
The text was updated successfully, but these errors were encountered:
Is {shared: true} actually used anywhere? I can't see it in the code..
Also, did you think of how to get this work when helpers are called with parameters?
I refactored this a bit so it works with parameters.. but then the last call to a helper changes the values for all
For example, if I have a helperName in a template like so:
{{helperName "test"}}
{{helperName "test2"}}
both helpers endup returning the result of {{helperName "test2"}}
I thought the shared: false could help with this..
The text was updated successfully, but these errors were encountered: