From bb60d2fc7c06ec661e4c66ac8778e1f2070103cd Mon Sep 17 00:00:00 2001 From: "Eran (ev672n), Vosk" Date: Mon, 29 Oct 2018 18:38:10 +0200 Subject: Sync code Sync the code between repositories Change-Id: Ic431c58c68716b6d401954fb854a183e0d222f57 Issue-ID: SDC-1874 Signed-off-by: Eran (ev672n), Vosk --- .../jquery/src/manipulation/wrapMap.js | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app/bower_components/jquery/src/manipulation/wrapMap.js (limited to 'app/bower_components/jquery/src/manipulation/wrapMap.js') diff --git a/app/bower_components/jquery/src/manipulation/wrapMap.js b/app/bower_components/jquery/src/manipulation/wrapMap.js new file mode 100644 index 0000000..fdb430a --- /dev/null +++ b/app/bower_components/jquery/src/manipulation/wrapMap.js @@ -0,0 +1,27 @@ +define( function() { + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // Support: IE9 + option: [ 1, "" ], + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +// Support: IE9 +wrapMap.optgroup = wrapMap.option; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +return wrapMap; +} ); -- cgit 1.2.3-korg