diff options
| -rw-r--r-- | docs/content/guide/overview.ngdoc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/content/guide/overview.ngdoc b/docs/content/guide/overview.ngdoc index 2e10b401..837c0a3f 100644 --- a/docs/content/guide/overview.ngdoc +++ b/docs/content/guide/overview.ngdoc @@ -90,7 +90,7 @@ concepts which the application developer may face:        <table>         <tr><td>Quantity</td><td>Cost</td></tr>         <tr> -         <td><input type="integer" min="0" ng-model="qty" required ></td> +         <td><input type="number" ng-pattern="/\d+/" step="1" min="0" ng-model="qty" required ></td>           <td><input type="number" ng-model="cost" required ></td>         </tr>        </table> @@ -124,7 +124,7 @@ We load Angular using the  `<script>` tag:  From the `ng-model` attribute of the `<input>` tags, Angular automatically sets up two-way data  binding, and we also demonstrate some easy input validation: -    Quantity: <input type="integer" min="0" ng-model="qty" required > +    Quantity: <input type="number" ng-pattern="/\d+/" step="1" min="0" ng-model="qty" required >      Cost: <input type="number" ng-model="cost" required >  These input widgets look normal enough, but consider these points: | 
