diff options
author | John Resig <jeresig@gmail.com> | 2009-12-06 17:26:39 -0800 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-12-06 17:26:39 -0800 |
commit | 209278915592fc63bd62039e246046d446d329e0 (patch) | |
tree | 6cce0f9614f3703f53c9f603151224988afca92b /src | |
parent | fbc73d45b487dd863886c7fd3f0af1fd4dec261b (diff) | |
download | jquery-209278915592fc63bd62039e246046d446d329e0.tar.gz jquery-209278915592fc63bd62039e246046d446d329e0.zip |
Added in support for injecting area elements into map elements. Fixes #4484.
Diffstat (limited to 'src')
-rw-r--r-- | src/manipulation.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 7d7038ee2..910311130 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -17,6 +17,7 @@ var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, tr: [ 2, "<table><tbody>", "</tbody></table>" ], td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], + area: [ 1, "<map>", "</map>" ], _default: [ 0, "", "" ] }; |