From: Karl Swedberg <karl@englishrules.com>
Date: Fri, 27 Nov 2009 19:29:44 +0000 (+0800)
Subject: added missing radix parameter for parseInt()
X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=a5efe9d3a6074ea39f677fdf21132badb0644bd3;p=jquery.git

added missing radix parameter for parseInt()
---

diff --git a/src/css.js b/src/css.js
index ddd42b4..38007b7 100644
--- a/src/css.js
+++ b/src/css.js
@@ -53,7 +53,7 @@ jQuery.extend({
 
 				// Set the alpha filter to set the opacity
 				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 ?