Comparing version 1.11.1-rc2 to 1.11.1
{ | ||
"name": "jquery", | ||
"version": "1.11.1-rc2", | ||
"version": "1.11.1", | ||
"main": "dist/jquery.js", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -5,3 +5,3 @@ { | ||
"description": "JavaScript library for DOM operations", | ||
"version": "1.11.1-rc2", | ||
"version": "1.11.1", | ||
"main": "dist/jquery.js", | ||
@@ -11,3 +11,3 @@ "homepage": "http://jquery.com", | ||
"name": "jQuery Foundation and other contributors", | ||
"url": "https://github.com/jquery/jquery/blob/1.11.1-rc2/AUTHORS.txt" | ||
"url": "https://github.com/jquery/jquery/blob/1.11.1/AUTHORS.txt" | ||
}, | ||
@@ -21,2 +21,3 @@ "repository": { | ||
"javascript", | ||
"browser", | ||
"library" | ||
@@ -30,3 +31,3 @@ ], | ||
"type": "MIT", | ||
"url": "https://github.com/jquery/jquery/blob/1.11.1-rc2/MIT-LICENSE.txt" | ||
"url": "https://github.com/jquery/jquery/blob/1.11.1/MIT-LICENSE.txt" | ||
} | ||
@@ -33,0 +34,0 @@ ], |
@@ -290,8 +290,11 @@ define([ | ||
while ( i-- ) { | ||
name = attrs[i].name; | ||
if ( name.indexOf("data-") === 0 ) { | ||
name = jQuery.camelCase( name.slice(5) ); | ||
dataAttr( elem, name, data[ name ] ); | ||
// Support: IE11+ | ||
// The attrs elements can be null (#14894) | ||
if ( attrs[ i ] ) { | ||
name = attrs[ i ].name; | ||
if ( name.indexOf( "data-" ) === 0 ) { | ||
name = jQuery.camelCase( name.slice(5) ); | ||
dataAttr( elem, name, data[ name ] ); | ||
} | ||
} | ||
@@ -298,0 +301,0 @@ } |
@@ -119,3 +119,3 @@ define([ | ||
/* jshint validthis: true */ | ||
var prop, value, toggle, tween, hooks, oldfire, display, | ||
var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay, | ||
anim = this, | ||
@@ -164,6 +164,9 @@ orig = {}, | ||
display = jQuery.css( elem, "display" ); | ||
// Test default display if display is currently "none" | ||
if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" && | ||
jQuery.css( elem, "float" ) === "none" ) { | ||
checkDisplay = display === "none" ? | ||
jQuery._data( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display; | ||
if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) { | ||
// inline-level elements accept inline-block; | ||
@@ -170,0 +173,0 @@ // block-level elements need to be inline with layout |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
2804958
110
54250
0