aboutsummaryrefslogtreecommitdiffstats
path: root/example/personalLog
diff options
context:
space:
mode:
authorMisko Hevery2011-11-08 17:40:52 -0800
committerMisko Hevery2011-11-14 20:31:15 -0800
commit9c0639437607a4fcea379bbaf610600d05d8a9b7 (patch)
tree1ae90d93d0139f7791487fe814360904254d39cb /example/personalLog
parent085e3c611fd0cd48757702c50c67b551a00a0d38 (diff)
downloadangular.js-9c0639437607a4fcea379bbaf610600d05d8a9b7.tar.bz2
chore(scenario tests): make scenario tests pass again
Diffstat (limited to 'example/personalLog')
-rw-r--r--example/personalLog/personalLog.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/personalLog/personalLog.html b/example/personalLog/personalLog.html
index bc76b263..4f74a402 100644
--- a/example/personalLog/personalLog.html
+++ b/example/personalLog/personalLog.html
@@ -20,11 +20,11 @@
<hr/>
<h2>Logs:</h2>
<ul>
- <li ng:repeat="log in logs.$orderBy('-at')">
+ <li ng:repeat="log in logs | orderBy:'-at'">
{{log.at | date:'yy-MM-dd HH:mm'}} {{log.msg}}
[<a href="" ng:click="rmLog(log)">x</a>]
</li>
</ul>
</body>
-</html> \ No newline at end of file
+</html>