Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <div class="events">
  2. <div class="bullet">
  3. <div class="bullet-padding">
  4. <div class="bullet-link nohover">Upcoming Events</div>
  5. </div>
  6. </div>
  7. <div class="game-type">
  8. <div class="game-name big">Soccer</div>
  9. <div class="game-cell big">1</div>
  10. <div class="game-cell big">X</div>
  11. <div class="game-cell big">2</div>
  12. <div class="game-cell big">&nbsp</div>
  13. </div>
  14. <div ng-repeat="stuff in json | limitTo: 1">
  15. <div class="game-type small" ng-repeat="match in stuff.matches | limitTo: 10">
  16. <div class="game-name">
  17. <div class="game-top">{{match.eventStart}} &nbsp &nbsp {{match.eventNumber}}</div>
  18. <a href="#/game" class="ahref"><div class="game-bottom" ng-click="setRoute('/game')">{{match.homeTeam}} - {{match.awayTeam}}</div></a>
  19. </div>
  20. <div ng-repeat="game in match.games | limitTo: 1">
  21. <div class="game-cell-odds" ng-repeat="out in game.outcomes | limitTo: 3">{{out.odds}}</div>
  22. <a href="#/game" class="ahref"><div class="game-cell arrowed" ng-click="setRoute('/game')">&nbsp</div></a>
  23. </div>
  24. </div>
  25. </div>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement