diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-03-23 15:03:06 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-03-30 23:45:17 +0200 |
commit | 6072d150d61655ec07f714e1d58a0bd7baa5ec3f (patch) | |
tree | 97ebfcd10460b6333d8429c6b2e255807409d15e /src/manipulation/wrapMap.js | |
parent | 693f1b537b0a19cda8b7e8f5379bffa5351b8a6e (diff) | |
download | jquery-6072d150d61655ec07f714e1d58a0bd7baa5ec3f.tar.gz jquery-6072d150d61655ec07f714e1d58a0bd7baa5ec3f.zip |
Docs: Update support comments to follow the new syntax
The changes follow the spec proposed in:
https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-69379197
Diffstat (limited to 'src/manipulation/wrapMap.js')
-rw-r--r-- | src/manipulation/wrapMap.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/manipulation/wrapMap.js b/src/manipulation/wrapMap.js index fdb430a03..921c2eac5 100644 --- a/src/manipulation/wrapMap.js +++ b/src/manipulation/wrapMap.js @@ -3,7 +3,7 @@ define( function() { // We have to close these tags to support XHTML (#13200) var wrapMap = { - // Support: IE9 + // Support: IE <=9 only option: [ 1, "<select multiple='multiple'>", "</select>" ], // XHTML parsers do not magically insert elements in the @@ -17,7 +17,7 @@ var wrapMap = { _default: [ 0, "", "" ] }; -// Support: IE9 +// Support: IE <=9 only wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; |