git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c73eadf
)
Fixed #2084 by added embed to the list of elements where it is ok to have self closin...
author
David Serduke
<davidserduke@gmail.com>
Fri, 21 Dec 2007 05:47:33 +0000
(
05:47
+0000)
committer
David Serduke
<davidserduke@gmail.com>
Fri, 21 Dec 2007 05:47:33 +0000
(
05:47
+0000)
src/core.js
patch
|
blob
|
history
diff --git
a/src/core.js
b/src/core.js
index
10db3ed
..
b5a1c70
100644
(file)
--- a/
src/core.js
+++ b/
src/core.js
@@
-934,7
+934,7
@@
jQuery.extend({
if ( typeof elem == "string" ) {
// Fix "XHTML"-style tags in all browsers
elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
- return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i) ?
+ return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ?
all :
front + "></" + tag + ">";
});