Last active
July 6, 2017 07:32
-
-
Save kscc25/d338c6ce4a3ee0fcd66899aefcad89c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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