aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYehuda Katz <wycats@Yehuda-Katz.local>2009-12-09 21:15:49 -0800
committerYehuda Katz <wycats@Yehuda-Katz.local>2009-12-09 21:17:10 -0800
commit1a4d1904ae8631f94b7400d99af24d3fe2f33ecd (patch)
tree5abaa5ef73f77ae556112a413c767f8a37d25614 /src
parentb3cee01820adde707428d68fcf02b0fdf53fe527 (diff)
downloadjquery-1a4d1904ae8631f94b7400d99af24d3fe2f33ecd.tar.gz
jquery-1a4d1904ae8631f94b7400d99af24d3fe2f33ecd.zip
Fix up whitespace and a couple of glitches.
Diffstat (limited to 'src')
-rw-r--r--src/attributes.js33
-rw-r--r--src/core.js6
-rw-r--r--src/manipulation.js10
3 files changed, 21 insertions, 28 deletions
diff --git a/src/attributes.js b/src/attributes.js
index 8d889fc97..8080af83d 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -4,11 +4,11 @@ jQuery.fn.extend({
},
addClass: function( value ) {
- if(jQuery.isFunction(value)) {
- return this.each(function() {
- jQuery(this).addClass( value.call(this) );
- });
- }
+ if(jQuery.isFunction(value)) {
+ return this.each(function() {
+ jQuery(this).addClass( value.call(this) );
+ });
+ }
if ( value && typeof value === "string" ) {
var classNames = (value || "").split(/\s+/);
@@ -35,11 +35,11 @@ jQuery.fn.extend({
},
removeClass: function( value ) {
- if(jQuery.isFunction(value)) {
- return this.each(function() {
- jQuery(this).removeClass( value.call(this) );
- });
- }
+ if(jQuery.isFunction(value)) {
+ return this.each(function() {
+ jQuery(this).removeClass( value.call(this) );
+ });
+ }
if ( (value && typeof value === "string") || value === undefined ) {
var classNames = (value || "").split(/\s+/);
@@ -170,13 +170,6 @@ jQuery.each({
},
toggleClass: function( classNames, state ) {
- if( jQuery.isFunction(classNames) ) {
- return this.each(function() {
- console.log(this);
- jQuery(this).toggleClass( classNames.call(this), state );
- });
- }
-
var type = typeof classNames;
if ( type === "string" ) {
// toggle individual class names
@@ -198,9 +191,9 @@ jQuery.each({
}
}, function(name, fn){
jQuery.fn[ name ] = function(val, state){
- if( jQuery.isFunction( val ) ) {
- return this.each(function() { jQuery(this)[ name ]( val.call(this), state ); });
- }
+ if( jQuery.isFunction( val ) ) {
+ return this.each(function() { jQuery(this)[ name ]( val.call(this), state ); });
+ }
return this.each( fn, arguments );
};
diff --git a/src/core.js b/src/core.js
index 7543b8cf6..5f1bc3a6b 100644
--- a/src/core.js
+++ b/src/core.js
@@ -444,8 +444,8 @@ jQuery.extend({
// not own constructor property must be Object
if ( obj.constructor
- && !hasOwnProperty.call(obj, "constructor")
- && !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
+ && !hasOwnProperty.call(obj, "constructor")
+ && !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
return false;
}
@@ -481,7 +481,7 @@ jQuery.extend({
script.text = data;
}
- // Use insertBefore instead of appendChild to circumvent an IE6 bug.
+ // Use insertBefore instead of appendChild to circumvent an IE6 bug.
// This arises when a base node is used (#2709).
head.insertBefore( script, head.firstChild );
head.removeChild( script );
diff --git a/src/manipulation.js b/src/manipulation.js
index baab8c6c0..17cfa842d 100644
--- a/src/manipulation.js
+++ b/src/manipulation.js
@@ -32,11 +32,11 @@ if ( !jQuery.support.htmlSerialize ) {
jQuery.fn.extend({
text: function( text ) {
- if(jQuery.isFunction(text)) {
- return this.each(function() {
- return jQuery(this).text( text.call(this) );
- });
- }
+ if(jQuery.isFunction(text)) {
+ return this.each(function() {
+ return jQuery(this).text( text.call(this) );
+ });
+ }
if ( typeof text !== "object" && text !== undefined ) {
return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );