Ember.js を使い始めるための適切なドキュメントが見つかりませんでした。助けてください。 http://emberjs.com/documentation/から試した簡単な例を次に示しますが、画面には何も表示されません。
Error: MyApp is not defined
Javascript: app.js
MyApp.president = Ember.Object.create({
firstName: "Barack",
lastName: "Obama",
fullName: function() {
return this.get('firstName') + ' ' + this.get('lastName');
// Tell Ember that this computed property depends on firstName
// and lastName
}.property('firstName', 'lastName')
});
HTML
<p>
<script type="text/x-handlebars">
The President of the United States is {{MyApp.president.fullName}}.
</script>
</p>
入門キットのすべての JS ファイルを含めました。