I try to build a link to a nested route and want to add a class to this link (for twitter bootstrap)
The result should something like this:
< a href=\
You can add classes just fine in {{#linkTo}}
helpers, you just need to remember not to confuse ember.
Ember may think your class is the routeName
of the params
, I include the class after both params
and routeName
and it works fine.
{{#linkTo 'dashboard.screenshots' value.model class='thumbnail'}}
........
{{/linkTo}}
Produces
.........