Core: Align branches: remove an unused variable, add comments

Closes gh-2233
This commit is contained in:
Michał Gołębiowski 2015-04-26 17:22:46 +02:00
parent 002240a6eb
commit f6de5a90dd
3 changed files with 5 additions and 2 deletions

View File

@ -51,6 +51,8 @@ jQuery.ajaxTransport( "script", function( s ) {
} }
} }
); );
// Use native DOM manipulation to avoid our domManip AJAX trickery
document.head.appendChild( script[ 0 ] ); document.head.appendChild( script[ 0 ] );
}, },
abort: function() { abort: function() {

View File

@ -6,7 +6,7 @@ define([
"../selector" "../selector"
], function( jQuery, rnotwhite, access, support ) { ], function( jQuery, rnotwhite, access, support ) {
var nodeHook, boolHook, var boolHook,
attrHandle = jQuery.expr.attrHandle; attrHandle = jQuery.expr.attrHandle;
jQuery.fn.extend({ jQuery.fn.extend({
@ -41,7 +41,7 @@ jQuery.extend({
if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
name = name.toLowerCase(); name = name.toLowerCase();
hooks = jQuery.attrHooks[ name ] || hooks = jQuery.attrHooks[ name ] ||
( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
} }
if ( value !== undefined ) { if ( value !== undefined ) {

View File

@ -10,6 +10,7 @@ define([
container = document.createElement( "div" ), container = document.createElement( "div" ),
div = document.createElement( "div" ); div = document.createElement( "div" );
// Finish early in limited (non-browser) environments
if ( !div.style ) { if ( !div.style ) {
return; return;
} }