Navigation Menu

Skip to content

Commit

Permalink
Fixes a bug I introduced
Browse files Browse the repository at this point in the history
  • Loading branch information
Yehuda Katz authored and Yehuda Katz committed Dec 5, 2009
1 parent c7d640f commit d684122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/css.js
Expand Up @@ -53,7 +53,7 @@ jQuery.extend({

// Set the alpha filter to set the opacity
var opacity = parseInt( value, 10 ) + '' === "NaN" ? "" : "alpha(opacity=" + value * 100 + ")";
filter = style.filter || jQuery.curCSS( elem, 'filter' ) || ""
var filter = style.filter || jQuery.curCSS( elem, 'filter' ) || "";
style.filter = ralpha.test(filter) ? filter.replace(ralpha, opacity) : opacity;
}

Expand Down

0 comments on commit d684122

Please sign in to comment.