Old Guides - You are viewing the guides for
Ember
v1.10.0.
Next we can update the application to allow navigating back to the list of all todos.
In index.html
convert the <a>
tag for 'All' todos into a Handlebars {{link-to}}
helper:
<li>
All
</li>
<li>
Active
</li>
<li>
Completed
</li>
Reload your web browser to ensure that there are no errors. You should be able to navigate between urls for all, active, and completed todos.