Merge pull request #563 from rwldrn/fix-spaces

Clean up spacing in manipulation
This commit is contained in:
timmywil 2011-10-24 07:17:08 -07:00
commit c4cc343c9c

View File

@ -459,12 +459,12 @@ jQuery.buildFragment = function( args, nodes, scripts ) {
var fragment, cacheable, cacheresults, doc, var fragment, cacheable, cacheresults, doc,
first = args[ 0 ]; first = args[ 0 ];
// nodes may contain either an explicit document object, // nodes may contain either an explicit document object,
// a jQuery collection or context object. // a jQuery collection or context object.
// If nodes[0] contains a valid object to assign to doc // If nodes[0] contains a valid object to assign to doc
if ( nodes && nodes[0] ) { if ( nodes && nodes[0] ) {
doc = nodes[0].ownerDocument || nodes[0]; doc = nodes[0].ownerDocument || nodes[0];
} }
// Ensure that an attr object doesn't incorrectly stand in as a document object // Ensure that an attr object doesn't incorrectly stand in as a document object
// Chrome and Firefox seem to allow this to occur and will throw exception // Chrome and Firefox seem to allow this to occur and will throw exception