added missing radix parameter for parseInt()
This commit is contained in:
parent
ddb86f8d5b
commit
a5efe9d3a6
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ jQuery.extend({
|
||||||
|
|
||||||
// Set the alpha filter to set the opacity
|
// Set the alpha filter to set the opacity
|
||||||
style.filter = (style.filter || "").replace( ralpha, "" ) +
|
style.filter = (style.filter || "").replace( ralpha, "" ) +
|
||||||
(parseInt( value ) + '' === "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
|
(parseInt( value, 10 ) + '' === "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
return style.filter && style.filter.indexOf("opacity=") >= 0 ?
|
return style.filter && style.filter.indexOf("opacity=") >= 0 ?
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue