I am trying to familiarize myself with Emberjs, and I am going through this excellent tutorial. There is a link to a fiddle on the page that contains a working example of the tutorial, which is great.
The problem I'm having is when I change the managed resources to the newest versions of Emberjs and Handlebarsjs, the fiddle no longer works.
When I put the code into a local version on my machine, the browser gives me the following warning: Uncaught Error: - Unable to find template "application".
I would assume that the problem lies in how the template is being called:
//In app.js
App.ApplicationView = Ember.View.extend({
templateName: 'application'
});
//In index.html
<script type="text/x-handlebars" data-template-name="application">
<h1>Ember Committers</h1>
{{outlet}}
</script>
I understand that the Emberjs code is in flux, but when I went trying to find an answer as to why this code did work with a previous version and what to change to make it work, I came up empty.
Help!