hummingbird-me/hummingbird

View on GitHub
frontend/app/templates/components/follow-button.hbs

Summary

Maintainability
Test Coverage
{{#unless isOwnButton}}
  {{#if user.isFollowed}}
    <a {{bind-attr class=":btn :follow-button :unfollow classes"}} {{action "toggleFollow" user}}> Unfollow</a>
  {{else}}
    <a {{bind-attr class=":btn :follow-button classes"}} {{action "toggleFollow" user}}> Follow</a>
  {{/if}}
{{/unless}}