diff options
| author | Misko Hevery | 2011-11-08 17:40:52 -0800 | 
|---|---|---|
| committer | Misko Hevery | 2011-11-14 20:31:15 -0800 | 
| commit | 9c0639437607a4fcea379bbaf610600d05d8a9b7 (patch) | |
| tree | 1ae90d93d0139f7791487fe814360904254d39cb /example | |
| parent | 085e3c611fd0cd48757702c50c67b551a00a0d38 (diff) | |
| download | angular.js-9c0639437607a4fcea379bbaf610600d05d8a9b7.tar.bz2 | |
chore(scenario tests): make scenario tests pass again
Diffstat (limited to 'example')
| -rw-r--r-- | example/personalLog/personalLog.html | 4 | 
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> | 
