fixed closing bracket for alpha not showing

This commit is contained in:
cloudhead 2010-03-04 13:55:00 -05:00
parent 6b938971df
commit 7539ef7323

View File

@ -5,6 +5,6 @@ tree.Alpha = function Alpha(val) {
};
tree.Alpha.prototype = {
toCSS: function () {
return "alpha(opacity=" + (this.value.toCSS ? this.value.toCSS() : this.value + ")");
return "alpha(opacity=" + (this.value.toCSS ? this.value.toCSS() : this.value) + ")";
}
};