Ember Route Not Displaying Template Content
I am new to Ember and JS, so far the most extensive tutorials I found were using 1.0.0 pre2, but on the official site there is a very nice description and some examples of 1.0.0 pr
Solution 1:
What I want and think should happen, is that it will display the content of about template, but instead it just updates the url's to /#/about or /#/favs . What am I missing here?
Your application template does not have an {{outlet}}
. With that in place it will work as expected.
See this jsbin for a working example.
Post a Comment for "Ember Route Not Displaying Template Content"