Skip to content

Instantly share code, notes, and snippets.

@kscc25
Last active July 6, 2017 07:32
Show Gist options
  • Save kscc25/d338c6ce4a3ee0fcd66899aefcad89c5 to your computer and use it in GitHub Desktop.
Save kscc25/d338c6ce4a3ee0fcd66899aefcad89c5 to your computer and use it in GitHub Desktop.
<div>
<p>Name: {{$ctrl.user.name}}</p>
<p>Job: {{$ctrl.user.job}}</p>
<button ng-click="$ctrl.toggleFollow()">
<span ng-if="{{!$ctrl.isFollowing}}">Follow</span>
<span ng-if="{{$ctrl.isFollowing}}">Unfollow</span>
</button>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment