Is there a way to get positional index during iteration in ember.js?
{{#each itemsArray}} {{name}} {{/each}}
I\'m looking for a way to
I think you could probably do something like this too
//add index property to all each queries Handlebars.registerHelper('each', function(context, block) { var ret = ""; for(var i=0, j=context.length; i