SlexAxton / require-handlebars-plugin

A plugin for handlebars in require.js (both in dev and build)
804 stars 202 forks source link

Dynamic partials #224

Closed MadebyAe closed 9 years ago

MadebyAe commented 9 years ago

I want render a partial with the handlebar partial method "{{> partial/name}}"

{{#each cars}} <!-- load partial dynamically this.slug = bmw --> {{> this.slug}}

{{/each}}

It's possible?

chrisrink commented 9 years ago

Dynamic partials come in handlebars 3. See pull request #236

MadebyAe commented 9 years ago

Thanks :)