Hi,
I just stumbled upon a weird thing when specifying context to a partial
I called on a partial like this:
{{> hbs/share/share page}}
In the partial I use a helper which accesses context data like this:
PageContext pageContext = options.context
.<PageContext> data("pageContext");
However the data returned by the context is null.
However when calling it like this:
{{#page}}
{{> hbs/share/share}}
{{/page}}
Everything works fine, pageContext is set as it should.
We are only manually setting up a handlebars context in one place in the code.