docs(guide/Directives): use more standard data-ng-model in example

Use data-ng-model instead of data-ng:model which is accepted for legacy reason.
The next "Normalization" section is saying:

> Best Practice: Prefer using the dash-delimited format (e.g. ng-bind for
> ngBind). If you want to use an HTML validating tool, you can instead use the
> data-prefixed version (e.g. data-ng-bind for ngBind). The other forms
> shown above are accepted for legacy reasons but we advise you to avoid
> them.

Closes #11960
This commit is contained in:
Yi EungJun
2015-05-28 19:11:08 +09:00
committed by Peter Bacon Darwin
parent f6ac226c8b
commit 80b9018f29
+1 -1
View File
@@ -51,7 +51,7 @@ In the following example, we say that the `<input>` element **matches** the `ngM
The following also **matches** `ngModel`:
```html
<input data-ng:model="foo">
<input data-ng-model="foo">
```
### Normalization