Fix for 193
This commit is contained in:
parent
8365b37c48
commit
dde208fc4b
6
src/jquery/jquery.js
vendored
6
src/jquery/jquery.js
vendored
|
@ -1462,6 +1462,9 @@ jQuery.extend({
|
|||
if (prop == 'opacity' && jQuery.browser.msie)
|
||||
return jQuery.attr(elem.style, 'opacity');
|
||||
|
||||
if (prop == "float" || prop == "cssFloat")
|
||||
prop = jQuery.browser.msie ? "styleFloat" : "cssFloat";
|
||||
|
||||
if (!force && elem.style[prop]) {
|
||||
|
||||
ret = elem.style[prop];
|
||||
|
@ -1824,7 +1827,8 @@ jQuery.extend({
|
|||
var fix = {
|
||||
"for": "htmlFor",
|
||||
"class": "className",
|
||||
"float": "cssFloat",
|
||||
"float": jQuery.browser.msie ? "styleFloat" : "cssFloat",
|
||||
cssFloat: fix["float"],
|
||||
innerHTML: "innerHTML",
|
||||
className: "className",
|
||||
value: "value",
|
||||
|
|
Loading…
Reference in a new issue