現在の要素がアクティブかどうかを確認したい
{{each}}
<div class="num">{{#isActive this}} show this {{/isActive}}</div>
{{/each}}
このハンドルバーのテンプレートを作成しました
Handlebars.registerHelper('isActive', function(element, options){
if($(element).hasClass('active')){
return options.fn(this);
}
return options.inverse(this);
});
私は何を間違えましたか?