mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 18:08:30 -05:00
Cleanup spacing in core.js. Fixes #10601
This commit is contained in:
14
src/core.js
14
src/core.js
@@ -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
|
||||
@@ -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 );
|
||||
@@ -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)
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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 + ")";
|
||||
}
|
||||
@@ -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 );
|
||||
@@ -833,7 +833,7 @@ jQuery.extend({
|
||||
},
|
||||
|
||||
now: function() {
|
||||
return (new Date()).getTime();
|
||||
return ( new Date() ).getTime();
|
||||
},
|
||||
|
||||
// Use of jQuery.browser is frowned upon.
|
||||
|
||||
Reference in New Issue
Block a user