diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc | 2 | ||||
| -rw-r--r-- | docs/content/cookbook/form.ngdoc | 8 | ||||
| -rw-r--r-- | docs/content/misc/started.ngdoc | 2 | ||||
| -rw-r--r-- | docs/src/templates/index.html | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc b/docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc index 43b03ae4..f66aa9a1 100644 --- a/docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc +++ b/docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc @@ -38,7 +38,7 @@ the following example. } </script> <div ng-controller="Ctrl1"> - Hello <input ng-model='name' ng-model-instant> <hr/> + Hello <input ng-model='name'> <hr/> <span ng:bind="name"> <span ng:bind="name"></span> <br/> <span ng_bind="name"> <span ng_bind="name"></span> <br/> <span ng-bind="name"> <span ng-bind="name"></span> <br/> 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/> diff --git a/docs/content/misc/started.ngdoc b/docs/content/misc/started.ngdoc index 0559e401..76bff181 100644 --- a/docs/content/misc/started.ngdoc +++ b/docs/content/misc/started.ngdoc @@ -65,7 +65,7 @@ This example demonstrates angular's two-way data binding: <doc:example> <doc:source> - Your name: <input type="text" ng-model="yourname" ng-model-instant placeholder="World"> + Your name: <input type="text" ng-model="yourname" placeholder="World"> <hr> Hello {{yourname || 'World'}}! </doc:source> diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index d7470461..bb8d2f1e 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -106,7 +106,7 @@ <div id="sidebar"> <input type="text" ng:model="search" id="search-box" placeholder="search the docs" - tabindex="1" accesskey="s" ng:model-instant> + tabindex="1" accesskey="s"> <ul id="content-list" ng:class="sectionId" ng:cloak> <li ng:repeat="page in pages | filter:search" ng:class="getClass(page)"> |
