Skip to content

Commit

Permalink
Cleanup spacing in core.js. Fixes #10601
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Oct 27, 2011
1 parent 9ff4f26 commit da062c5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/core.js
Expand Up @@ -119,7 +119,7 @@ jQuery.fn = jQuery.prototype = {
// HANDLE: $(html) -> $(array)
if ( match[1] ) {
context = context instanceof jQuery ? context[0] : context;
doc = (context ? context.ownerDocument || context : document);
doc = ( context ? context.ownerDocument || context : document );

// If a single string is passed in and it's a single tag
// just do a createElement and skip the rest
Expand All @@ -136,7 +136,7 @@ jQuery.fn = jQuery.prototype = {

} else {
ret = jQuery.buildFragment( [ match[1] ], [ doc ] );
selector = (ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment).childNodes;
selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes;
}

return jQuery.merge( this, selector );
Expand Down Expand Up @@ -166,7 +166,7 @@ jQuery.fn = jQuery.prototype = {

// HANDLE: $(expr, $(...))
} else if ( !context || context.jquery ) {
return (context || rootjQuery).find( selector );
return ( context || rootjQuery ).find( selector );

// HANDLE: $(expr, context)
// (which is just equivalent to: $(context).find(expr)
Expand All @@ -180,7 +180,7 @@ jQuery.fn = jQuery.prototype = {
return rootjQuery.ready( selector );
}

if (selector.selector !== undefined) {
if ( selector.selector !== undefined ) {
this.selector = selector.selector;
this.context = selector.context;
}
Expand Down Expand Up @@ -237,7 +237,7 @@ jQuery.fn = jQuery.prototype = {
ret.context = this.context;

if ( name === "find" ) {
ret.selector = this.selector + (this.selector ? " " : "") + selector;
ret.selector = this.selector + ( this.selector ? " " : "" ) + selector;
} else if ( name ) {
ret.selector = this.selector + "." + name + "(" + selector + ")";
}
Expand Down Expand Up @@ -552,7 +552,7 @@ jQuery.extend({
.replace( rvalidtokens, "]" )
.replace( rvalidbraces, "")) ) {

return (new Function( "return " + data ))();
return ( new Function( "return " + data ) )();

}
jQuery.error( "Invalid JSON: " + data );
Expand Down Expand Up @@ -833,7 +833,7 @@ jQuery.extend({
},

now: function() {
return (new Date()).getTime();
return ( new Date() ).getTime();
},

// Use of jQuery.browser is frowned upon.
Expand Down

0 comments on commit da062c5

Please sign in to comment.