aboutsummaryrefslogtreecommitdiffstats
path: root/scenario
diff options
context:
space:
mode:
authorShyam Seshadri2010-06-02 15:04:26 -0700
committerShyam Seshadri2010-06-02 15:04:26 -0700
commita29c5e4c7fd5e708c28e70e974bf873621d5277c (patch)
tree17efcdc2df48d32a0a928cc2ab755f355e9f6ae1 /scenario
parent6143b04384680d17f38c2d5894a9b9961ea33288 (diff)
downloadangular.js-a29c5e4c7fd5e708c28e70e974bf873621d5277c.tar.bz2
Revert "removed few key foreach and replaced thime with for loop for performance."
This reverts commit 6143b04384680d17f38c2d5894a9b9961ea33288.
Diffstat (limited to 'scenario')
-rw-r--r--scenario/perf.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/scenario/perf.html b/scenario/perf.html
index cd676918..e4edc00f 100644
--- a/scenario/perf.html
+++ b/scenario/perf.html
@@ -24,8 +24,7 @@
<input type="text" name="text"/>
<hr/>
<ul>
- <li Xng-repeat="item in items.$filter('').$orderBy('name')"
- ng-repeat="item in items">
+ <li ng-repeat="item in items.$filter('').$orderBy('name')">
{{item.name}} <a href="#{{item.name}}">{{item.parts.join(', ')}}</a>
</li>
</ul>