mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Core: Align branches: remove an unused variable, add comments
Closes gh-2233
This commit is contained in:
parent
002240a6eb
commit
f6de5a90dd
@ -51,6 +51,8 @@ jQuery.ajaxTransport( "script", function( s ) {
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
// Use native DOM manipulation to avoid our domManip AJAX trickery
|
||||
document.head.appendChild( script[ 0 ] );
|
||||
},
|
||||
abort: function() {
|
||||
|
@ -6,7 +6,7 @@ define([
|
||||
"../selector"
|
||||
], function( jQuery, rnotwhite, access, support ) {
|
||||
|
||||
var nodeHook, boolHook,
|
||||
var boolHook,
|
||||
attrHandle = jQuery.expr.attrHandle;
|
||||
|
||||
jQuery.fn.extend({
|
||||
@ -41,7 +41,7 @@ jQuery.extend({
|
||||
if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
|
||||
name = name.toLowerCase();
|
||||
hooks = jQuery.attrHooks[ name ] ||
|
||||
( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
|
||||
( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
|
||||
}
|
||||
|
||||
if ( value !== undefined ) {
|
||||
|
@ -10,6 +10,7 @@ define([
|
||||
container = document.createElement( "div" ),
|
||||
div = document.createElement( "div" );
|
||||
|
||||
// Finish early in limited (non-browser) environments
|
||||
if ( !div.style ) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user