ブランチを使用していて、カスタム ヘルパーを追加しました。これは通常のビュー テンプレートではうまく機能しますが、compositeView の itemView テンプレートでは、ヘルパーに渡される変数は未定義です。ヘルパーがなくても、テンプレートは正常にコンパイルされます。
// Helper
Handlebars.registerHelper 'mny', (val) ->
val.toString().replace( /\B(?=(\d{3})+(?!\d))/g, " " )
// Example
{{price}} //it works
{{mny price}} //it doesn't