Skip to content

Instantly share code, notes, and snippets.

@Showtimes
Created March 5, 2013 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Showtimes/5095129 to your computer and use it in GitHub Desktop.
Save Showtimes/5095129 to your computer and use it in GitHub Desktop.
<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