From 6e71971a1b2eb65c1737f85db18457c2ee10fc36 Mon Sep 17 00:00:00 2001 From: Josh Kramer Date: Tue, 24 Feb 2015 14:32:37 -0500 Subject: [PATCH] docs(ngModel.NgModelController): describe your change... contenteditable is supported in many more browsers than Angular itself is. http://caniuse.com/#feat=contenteditable --- src/ng/directive/ngModel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ng/directive/ngModel.js b/src/ng/directive/ngModel.js index 8d9c6dc19ba5..2aa897624e55 100644 --- a/src/ng/directive/ngModel.js +++ b/src/ng/directive/ngModel.js @@ -129,8 +129,8 @@ is set to `true`. The parse error is stored in `ngModel.$error.parse`. * 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. + * `contenteditable` is an HTML5 attribute, which tells the browser to let the element + * contents be edited in place by the user. * * We are using the {@link ng.service:$sce $sce} service here and include the {@link ngSanitize $sanitize} * module to automatically remove "bad" content like inline event listener (e.g. ``).