aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation/wrapMap.js
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2015-07-20 19:24:46 +0200
committerMichał Gołębiowski <m.goleb@gmail.com>2015-09-14 21:26:48 +0200
commitce3b4a62427c5a3a6669dcb8bf8e27a6287990d5 (patch)
tree2b50ed87d23df888f5fcc299d7108b23bdbc3e56 /src/manipulation/wrapMap.js
parent64fd7ef3d081b5c65d541237f73a4d89f0f0ad7b (diff)
downloadjquery-ce3b4a62427c5a3a6669dcb8bf8e27a6287990d5.tar.gz
jquery-ce3b4a62427c5a3a6669dcb8bf8e27a6287990d5.zip
Ajax:Attributes:CSS:Manipulation: Reduce Android 2.3 support
Drop non-critical workarounds for Android 2.3. Fixes gh-2483 Fixes gh-2505 Closes gh-2581
Diffstat (limited to 'src/manipulation/wrapMap.js')
-rw-r--r--src/manipulation/wrapMap.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/manipulation/wrapMap.js b/src/manipulation/wrapMap.js
index 3fa5f913e..a7b913c90 100644
--- a/src/manipulation/wrapMap.js
+++ b/src/manipulation/wrapMap.js
@@ -12,9 +12,8 @@ var wrapMap = {
// their parent elements (except for "table" element) could be omitted
// since browser parsers are smart enough to auto-insert them
- // Support: Android 2.3
- // Android browser doesn't auto-insert colgroup
- col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
+ // Auto-insert "colgroup" element
+ col: [ 2, "<table>", "</table>" ],
// Auto-insert "tbody" element
tr: [ 2, "<table>", "</table>" ],