Skip to content

Commit 79da95d

Browse files
author
K.C. Hunter
committed
adding readme link
1 parent 119c900 commit 79da95d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ It is an MVC (Model-View-Controller) framework so a brief understanding of MVC i
1010

1111
## Sorting and Filtering Course Videos ##
1212
1. [Services and JSON](http://youtu.be/rHmk0UhJSb4 "Services and JSON")
13-
2. [Ng-Repeat](http://youtu.be/CqaoKt1Gvyk "Ng-Repeat")
13+
2. [Ng-Repeat](http://youtu.be/CqaoKt1Gvyk "Ng-Repeat")
14+
3. [Filters and Sorting](http://youtu.be/7nOcg6SPspI "Filters and Sorting")

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h1>Baltimore Ravens</h1>
2727
</tr>
2828
</thead>
2929
<tbody>
30-
<tr data-ng-repeat="player in players | filter:search | orderBy:'-name' | limitTo: 3">
30+
<tr data-ng-repeat="player in players | filter:search | orderBy:'name' | limitTo: 3">
3131
<td>{{player.name}}</td>
3232
<td>{{player.position}}</td>
3333
<td>{{player.number}}</td>

0 commit comments

Comments
 (0)