mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 11:48:09 -05:00
Fixed the cleaning method to support namespaced elements. Thanks to einaros for the patch recommendation. Fixes #5358.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
|
||||
rleadingWhitespace = /^\s+/,
|
||||
rxhtmlTag = /(<(\w+)[^>]*?)\/>/g,
|
||||
rxhtmlTag = /(<([\w:]+)[^>]*?)\/>/g,
|
||||
rselfClosing = /^(?:abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i,
|
||||
rtagName = /<(\w+)/,
|
||||
rtagName = /<([\w:]+)/,
|
||||
rtbody = /<tbody/i,
|
||||
rhtml = /</,
|
||||
fcloseTag = function(all, front, tag){
|
||||
|
||||
Reference in New Issue
Block a user