aboutsummaryrefslogtreecommitdiffstats
path: root/scenario/widgets.html
diff options
context:
space:
mode:
authorAndres Ornelas2010-07-27 10:44:46 -0700
committerAndres Ornelas2010-07-27 10:44:46 -0700
commitb42072733c3afd03a49457d88ffed28ebe55655e (patch)
tree2fa2b8703cdc75fe19a204d2c9677e27d33c8176 /scenario/widgets.html
parent2f7c538628929888ce7c99b9577e34f8c87211f7 (diff)
parent8ddee9bb25ade2bbe7d57db6353b29867606c184 (diff)
downloadangular.js-b42072733c3afd03a49457d88ffed28ebe55655e.tar.bz2
Merge branch 'master' of github.com:angular/angular.js into future
Diffstat (limited to 'scenario/widgets.html')
-rw-r--r--scenario/widgets.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/scenario/widgets.html b/scenario/widgets.html
index 86269e86..2626843d 100644
--- a/scenario/widgets.html
+++ b/scenario/widgets.html
@@ -72,7 +72,7 @@
</tr>
<tr><th colspan="3">Buttons</th></tr>
<tr>
- <td>ng-change<br/>ng-click</td>
+ <td>ng-change<br/>ng:click</td>
<td ng:init="button.count = 0">
<form>
<input type="button" value="button" ng-change="button.count = button.count + 1"/> <br/>
@@ -85,10 +85,10 @@
</tr>
<tr><th colspan="3">Repeaters</th></tr>
<tr>
- <td>ng-repeat</td>
+ <td>ng:repeat</td>
<td>
<ul>
- <li ng-repeat="name in ['misko', 'adam']">{{name}}</li>
+ <li ng:repeat="name in ['misko', 'adam']">{{name}}</li>
</ul>
</td>
<td></td>