I would like to know how to pass the new @index variable to a child template in Meteor 1.2. I've got something like:
{{#each scores}}
{{@index}} //<---- THIS WORK
{{> scoreItem}}
{{/each}}
<template name="scoreItem">
<div class="position">
{{@index}}. // <----- GIVE ERROR
</div>
</template>
I get always undefined or an error