diff options
author | Oleg <markelog@gmail.com> | 2012-12-19 20:34:08 +0400 |
---|---|---|
committer | Oleg <markelog@gmail.com> | 2012-12-24 03:03:19 +0400 |
commit | 28f6fcb763266ecd476274f430cce0ef625f8b16 (patch) | |
tree | 6994d5609a41b109db0473f3f1b295970f46caa7 | |
parent | eac4e8e2510485c452af3614ddb8042ceec1fc34 (diff) | |
download | jquery-28f6fcb763266ecd476274f430cce0ef625f8b16.tar.gz jquery-28f6fcb763266ecd476274f430cce0ef625f8b16.zip |
Remove unused variables
-rw-r--r-- | src/manipulation.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 4b33e64c6..d3bc7d027 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -1,6 +1,5 @@ var rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, rtagName = /<([\w:]+)/, - rtbody = /<tbody/i, rhtml = /<|&#?\w+;/, rnoInnerhtml = /<(?:script|style|link)/i, manipulation_rcheckableType = /^(?:checkbox|radio)$/i, @@ -579,7 +578,7 @@ jQuery.extend({ }, clean: function( elems, context, fragment, scripts, selection ) { - var elem, i, j, tmp, tag, wrap, tbody, + var elem, i, j, tmp, tag, wrap, ret = [], container = context === document && fragment; |