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 Dotan Simha committed Nov 22, 2016
1 parent 0f0076c commit fb0dc0e
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 fb0dc0e

Please sign in to comment.