mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Merge branch 'bug-3333' of https://github.com/rdworth/jquery
This commit is contained in:
commit
ee81d4da92
13
src/css.js
13
src/css.js
@ -248,11 +248,14 @@ jQuery(function() {
|
||||
get: function( elem, computed ) {
|
||||
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
|
||||
// Work around by temporarily setting element display to inline-block
|
||||
var ret = "0px",
|
||||
display = elem.style.display;
|
||||
elem.style.display = "inline-block";
|
||||
ret = getComputedStyle( elem, "margin-right", "margin-right" );
|
||||
elem.style.display = display;
|
||||
var ret;
|
||||
jQuery.swap( elem, { "display": "inline-block" }, function() {
|
||||
if ( computed ) {
|
||||
ret = curCSS( elem, "margin-right", "marginRight" );
|
||||
} else {
|
||||
ret = elem.style.marginRight;
|
||||
}
|
||||
});
|
||||
return ret;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user