Ember.js link-to and action helper
I just want to point out the difference between link-to and action is:
link-to is used with conjunction for routes
App.Router.map(function() { this.route('login', {path: "/"}); }); {{#link-to "login"}}Login{{/link-to}}
whereas action is only used for dispatching events in controllers, and they bubble all the way up to the route.
{{action "confirm"}}
The action helper can be used inside a or form tag.














