From c8b7c16b78bc3ba7486ebf9c41f4603a9f429dd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Tue, 26 May 2020 22:21:32 +0200 Subject: [PATCH] fix(jqLite): improve documentation --- src/jqLite.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jqLite.js b/src/jqLite.js index 6efbadd10854..efbffdf19c41 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -90,9 +90,9 @@ * - [`val()`](http://api.jquery.com/val/) * - [`wrap()`](http://api.jquery.com/wrap/) * - * jqLite also provides a method restoring pre-1.8 insecure treatment of XHTML-like tags - * that makes input like `
` turned to `
` instead of - * `
` like version 1.8 & newer do: + * jqLite also provides a method restoring pre-1.8 insecure treatment of XHTML-like tags. + * This legacy behavior turns input like `
` to `
` + * instead of `
` like version 1.8 & newer do. To restore it, invoke: * ```js * angular.UNSAFE_restoreLegacyJqLiteXHTMLReplacement(); * ```