I'm working on a project made with Ember.js
I'm using ember-paper
addon for buttons and also Ember-intl
addon to translate my application (English and French).
I have a basic HTML button with this code:
<button class={{if model.active "active"}} {{action "changeLocale" model.locale}}>{{model.locale}}</button>
But when I use ember-paper with this kind of code :
{{#paper-button accent=true}}Test{{/paper-button}}
I can't find a way to add my if statement and the action.
{{if model.active "active"}} {{action "changeLocale" model.locale}}>
Do you know how to do that?