Created
March 5, 2013 22:57
-
-
Save Showtimes/5095129 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
<h1>Raffler</h1> | |
<div ng-controller="RaffleCtrl"> | |
<form ng-submit="addEntry()"> | |
<input type="text" ng-model="newEntry.name"> | |
<input type="submit" value="Add"> | |
</form> | |
<ul> | |
<li ng-repeat="entry in entries"> | |
{{entry.name}} | |
<span ng-show="entry.winner" ng-class="{highlight: entry == lastWinner}" class="winner">WINNER</span> | |
</li> | |
</ul> | |
<button ng-click="drawWinner()">Draw Winner</button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment