Last active
June 17, 2018 19:59
Revisions
-
andrewconnell revised this gist
Aug 30, 2015 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,7 @@ <link rel="stylesheet" href="/public/fabric/css/fabric.min.css"> <link rel="stylesheet" href="/public/fabric/css/fabric.components.min.css"> <div class="ms-Grid"> <div class="ms-Grid-row"> <div class="ms-Grid-col ms-u-lg12"> <div class="ms-font-su">{{vm.teamName}} Roster</div> -
andrewconnell created this gist
Aug 30, 2015 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ <div class="ms-Grid"> <div class="ms-Grid-row"> <div class="ms-Grid-col ms-u-lg12"> <div class="ms-font-su">{{vm.teamName}} Roster</div> <div class="ms-Table"> <div class="ms-Table-row"> <span class="ms-Table-cell ms-font-xl">Pos.</span> <span class="ms-Table-cell ms-font-xl">Player</span> <span class="ms-Table-cell ms-font-xl">NFL</span> <span class="ms-Table-cell ms-font-xl">Paid</span> </div> <div class="ms-Table-row" data-ng-repeat="pick in vm.picks"> <span class="ms-Table-cell ms-font-xl">{{pick.player.position}}</span> <span class="ms-Table-cell ms-font-xl">{{pick.player.fullName}}</span> <span class="ms-Table-cell ms-font-xl">{{pick.player.nflTeam}}</span> <span class="ms-Table-cell ms-font-xl"><i class="fa fa-usd"></i> {{pick.price}}</span> </div> </div> </div> </div> </div>