diff options
| -rw-r--r-- | src/ng/directive/input.js | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index 1abd9285..59c1f82b 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -837,6 +837,9 @@ var VALID_CLASS = 'ng-valid',   * data-binding. Notice how different directives (`contenteditable`, `ng-model`, and `required`)   * collaborate together to achieve the desired result.   * + * Note that `contenteditable` is an HTML5 attribute, which tells the browser to let the element + * contents be edited in place by the user.  This will not work on older browsers. + *   * <example module="customControl">      <file name="style.css">        [contenteditable] { | 
