diff options
author | jaubourg <j@ubourg.net> | 2011-04-11 13:41:17 +0200 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-04-11 13:41:17 +0200 |
commit | 4c3aba9a15c936696ad2e799f7e372bf2aeb38a5 (patch) | |
tree | be25f30c1eb60aa2b87412b51eab7745b2005760 /src/manipulation.js | |
parent | 3411d47a6a952e283864d2401438a6764d925b74 (diff) | |
parent | 56ffad2dad138293c132e6ad353111bd2d1f1239 (diff) | |
download | jquery-4c3aba9a15c936696ad2e799f7e372bf2aeb38a5.tar.gz jquery-4c3aba9a15c936696ad2e799f7e372bf2aeb38a5.zip |
Merge branch 'master' of github.com:jquery/jquery
Diffstat (limited to 'src/manipulation.js')
-rw-r--r-- | src/manipulation.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 27f81cc24..758cdbae0 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -377,7 +377,7 @@ function cloneCopyEvent( src, dest ) { } } -function cloneFixAttributes(src, dest) { +function cloneFixAttributes( src, dest ) { // We do not need to do anything for non-Elements if ( dest.nodeType !== 1 ) { return; @@ -549,7 +549,8 @@ jQuery.extend({ // Return the cloned set return clone; -}, + }, + clean: function( elems, context, fragment, scripts ) { context = context || document; |