David Burles

Results 171 comments of David Burles

A workaround might be to just augment the `data` object with fields that resolve to templates. e.g: ``` Spacebars.toHTML( { header: Assets.getText('header.html'), footer: Assets.getText('footer.html'), name: 'Foo' }, Assets.getText('main.html') ); ```

Yeah it's just passing the template in as regular data

@giovapanasiti Rather than using `Template.parentData` within a helper, try passing the data through from the parent using named arguments like: ``` {{> childTemplate categoryId=_id}} ``` See http://meteorcapture.com/spacebars/#template-inclusion-ex-3

Oh yeah. It has been a while since I've worked with blaze (or used this package!). You might want to try the each..in blaze syntax you should be able to...

Thanks @mcorbelli I'll take a look into this.

I've just tested Meteor 3.2.2 on a new app (`meteor create x`) and it's working. There's possibly something else amiss? Double check the package is installed.

I would just try to create a fresh Meteor 3.0 app and confirm it's working there then try to debug the problematic app piece by piece.

Interesting. Can you narrow it down to either one of those packages?

I'm not having any luck either. The docs also aren't super clear on how to manage inline scripts and the provided example isn't correct.

+1 for auth context API outside of react, primarily token information.