mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Correct typo in support.js assigning margin-top with cssText. Fixes #10638.
This commit is contained in:
parent
902668825f
commit
b4392c220a
@ -273,7 +273,7 @@ jQuery.support = (function() {
|
||||
}
|
||||
|
||||
container = document.createElement("div");
|
||||
container.style.cssText = vb + "width:0;height:0;position:static;top:0;marginTop:" + conMarginTop + "px";
|
||||
container.style.cssText = vb + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px";
|
||||
body.insertBefore( container, body.firstChild );
|
||||
|
||||
// Construct a test element
|
||||
|
Loading…
Reference in New Issue
Block a user