From 3e8712062d92feea8723e6185c47a2cc98e0e7af Mon Sep 17 00:00:00 2001 From: Oleg Gaidarenko Date: Mon, 26 Jan 2015 04:40:14 +0300 Subject: [PATCH] Manipulation: simplification of manipulation wrappers Since support for IE6-7 was dropped these wrappers no longer required Ref 90d7cc1d8b2ea7ac75f0eacb42439349c9c73278 Ref gh-2002 Closes gh-2032 --- src/manipulation.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/manipulation.js b/src/manipulation.js index aaa3827c6..1d4716a18 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -47,9 +47,10 @@ var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|" + // We have to close these tags to support XHTML (#13200) wrapMap = { option: [ 1, "" ], - legend: [ 1, "
", "
" ], - area: [ 1, "", "" ], + + // Support: IE8 param: [ 1, "", "" ], + thead: [ 1, "", "
" ], tr: [ 2, "", "
" ], col: [ 2, "", "
" ], -- 2.39.5