Bulding an app with ember.js (イントロ 30 分間のビデオ) を見ていますが、日付関数に問題があります。
Ember.Handlebars.registerBoundHelper('date', function(date) {
return moment(date).fromNow();
});
そのコードを入力し、ページを更新するとすべて問題ありません。ただし、index.html に戻ってコードを変更すると、次のようになります。
<h2>by {{author}} <small class="muted">({{ publishedAt}})</small></h2>
app.js から index.html に日付を追加すると
<h2>by {{author}} <small class="muted">({{date publishedAt}})</small></h2>
日付を入力してページをリロードすると、空白のページが表示されますか? 私は何を間違っていますか?