aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/cookbook/form.ngdoc
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/cookbook/form.ngdoc')
-rw-r--r--docs/content/cookbook/form.ngdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/cookbook/form.ngdoc b/docs/content/cookbook/form.ngdoc
index 175a7275..b335cecf 100644
--- a/docs/content/cookbook/form.ngdoc
+++ b/docs/content/cookbook/form.ngdoc
@@ -38,9 +38,9 @@ allow a user to enter data.
<input type="text" ng-model="user.name" required/> <br><br>
<label>Address:</label><br>
- <input type="text" ng-model="user.address.line1" ng-model-instant size="33" required> <br>
- <input type="text" ng-model="user.address.city" ng-model-instant size="12" required>,
- <input type="text" ng-model="user.address.state" ng-model-instant
+ <input type="text" ng-model="user.address.line1" size="33" required> <br>
+ <input type="text" ng-model="user.address.city" size="12" required>,
+ <input type="text" ng-model="user.address.state"
ng-pattern="state" size="2" required>
<input type="text" ng-model="user.address.zip" size="5"
ng-pattern="zip" required><br><br>
@@ -54,7 +54,7 @@ allow a user to enter data.
<option>pager</option>
<option>IM</option>
</select>
- <input type="text" ng-model="contact.value" ng-model-instant required/>
+ <input type="text" ng-model="contact.value" required>
[ <a href="" ng-click="removeContact(contact)">X</a> ]
</div>
<hr/>