mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Dimensions: Reverse a check to avoid potential reflows
Fixes #14979
Closes gh-1560
(cherry picked from commit 1ca84214cc)
Conflicts:
AUTHORS.txt
This commit is contained in:
committed by
Dave Methvin
parent
f873d06543
commit
90c50ef961
@@ -350,7 +350,7 @@ jQuery.each([ "height", "width" ], function( i, name ) {
|
||||
if ( computed ) {
|
||||
// certain elements can have dimension info if we invisibly show them
|
||||
// however, it must have a current display style that would benefit from this
|
||||
return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ?
|
||||
return rdisplayswap.test( jQuery.css( elem, "display" ) ) && elem.offsetWidth === 0 ?
|
||||
jQuery.swap( elem, cssShow, function() {
|
||||
return getWidthOrHeight( elem, name, extra );
|
||||
}) :
|
||||
|
||||
Reference in New Issue
Block a user