Skip to content

Commit

Permalink
Step 17.24: Refactor PartyRsvp
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Kisiela authored and DAB0mB committed Dec 14, 2016
1 parent f7427e7 commit 5038f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions imports/ui/components/partyRsvp/partyRsvp.html
@@ -1,3 +1,3 @@
<input type="button" value="I'm going!" ng-click="partyRsvp.yes()"/>
<input type="button" value="Maybe" ng-click="partyRsvp.maybe()"/>
<input type="button" value="No" ng-click="partyRsvp.no()"/>
<input type="button" value="I'm going!" ng-click="partyRsvp.yes()" class="btn btn-default" ng-class="{'btn-primary' : partyRsvp.isYes()}"/>
<input type="button" value="Maybe" ng-click="partyRsvp.maybe()" class="btn btn-default" ng-class="{'btn-primary' : partyRsvp.isMaybe()}"/>
<input type="button" value="No" ng-click="partyRsvp.no()" class="btn btn-default" ng-class="{'btn-primary' : partyRsvp.isNo()}"/>

0 comments on commit 5038f51

Please sign in to comment.