aboutsummaryrefslogtreecommitdiffstats
path: root/regression/issue-169.html
diff options
context:
space:
mode:
authorMisko Hevery2011-09-08 13:56:29 -0700
committerIgor Minar2011-10-11 11:01:45 -0700
commit4f78fd692c0ec51241476e6be9a4df06cd62fdd6 (patch)
tree91f70bb89b9c095126fbc093f51cedbac5cb0c78 /regression/issue-169.html
parentdf6d2ba3266de405ad6c2f270f24569355706e76 (diff)
downloadangular.js-4f78fd692c0ec51241476e6be9a4df06cd62fdd6.tar.bz2
feat(forms): new and improved forms
Diffstat (limited to 'regression/issue-169.html')
-rw-r--r--regression/issue-169.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/regression/issue-169.html b/regression/issue-169.html
index e18c4f2e..80902dc2 100644
--- a/regression/issue-169.html
+++ b/regression/issue-169.html
@@ -3,8 +3,8 @@
<script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script>
<body>
<span ng:init='x = {d:3}; x1 = {bar:[x,5]}; x1.bar[0].d = 4'>
- <input name="x1.bar[0].d" type="text"></input>
- <input name="x.d" type="text"></input>
+ <input ng:model="x1.bar[0].d" type="text"></input>
+ <input ng:model="x.d" type="text"></input>
<span> {{x1}} -- {{x1.bar[0].d}}</span>
</body>
</html> \ No newline at end of file