Make sure that when multiple variables are being declared that assignments are each done on their own line.

This commit is contained in:
John Resig 2010-11-09 11:09:07 -05:00
parent b5b3c73db3
commit fb48ae8e6c
12 changed files with 98 additions and 45 deletions

View file

@ -34,7 +34,8 @@ jQuery.fn.extend({
text: function( text ) {
if ( jQuery.isFunction(text) ) {
return this.each(function(i) {
var self = jQuery(this);
var self = jQuery( this );
self.text( text.call(this, i, self.text()) );
});
}
@ -83,7 +84,8 @@ jQuery.fn.extend({
}
return this.each(function() {
var self = jQuery( this ), contents = self.contents();
var self = jQuery( this ),
contents = self.contents();
if ( contents.length ) {
contents.wrapAll( html );
@ -194,7 +196,9 @@ jQuery.fn.extend({
// attributes in IE that are actually only stored
// as properties will not be copied (such as the
// the name attribute on an input).
var html = this.outerHTML, ownerDocument = this.ownerDocument;
var html = this.outerHTML,
ownerDocument = this.ownerDocument;
if ( !html ) {
var div = ownerDocument.createElement("div");
div.appendChild( this.cloneNode(true) );
@ -249,7 +253,8 @@ jQuery.fn.extend({
} else if ( jQuery.isFunction( value ) ) {
this.each(function(i){
var self = jQuery(this);
var self = jQuery( this );
self.html( value.call(this, i, self.html()) );
});
@ -272,13 +277,14 @@ jQuery.fn.extend({
}
if ( typeof value !== "string" ) {
value = jQuery(value).detach();
value = jQuery( value ).detach();
}
return this.each(function() {
var next = this.nextSibling, parent = this.parentNode;
var next = this.nextSibling,
parent = this.parentNode;
jQuery(this).remove();
jQuery( this ).remove();
if ( next ) {
jQuery(next).before( value );
@ -296,7 +302,9 @@ jQuery.fn.extend({
},
domManip: function( args, table, callback ) {
var results, first, value = args[0], scripts = [], fragment, parent;
var results, first, fragment, parent,
value = args[0],
scripts = [];
// We can't cloneNode fragments that contain checked, in WebKit
if ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === "string" && rchecked.test( value ) ) {
@ -371,7 +379,9 @@ function cloneCopyEvent(orig, ret) {
return;
}
var oldData = jQuery.data( orig[i++] ), curData = jQuery.data( this, oldData ), events = oldData && oldData.events;
var oldData = jQuery.data( orig[i++] ),
curData = jQuery.data( this, oldData ),
events = oldData && oldData.events;
if ( events ) {
delete curData.handle;
@ -428,7 +438,8 @@ jQuery.each({
replaceAll: "replaceWith"
}, function( name, original ) {
jQuery.fn[ name ] = function( selector ) {
var ret = [], insert = jQuery( selector ),
var ret = [],
insert = jQuery( selector ),
parent = this.length === 1 && this[0].parentNode;
if ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) {