From 7539ef7323aae92ca642032ab643592c574dcfa9 Mon Sep 17 00:00:00 2001 From: cloudhead Date: Thu, 4 Mar 2010 13:55:00 -0500 Subject: [PATCH] fixed closing bracket for alpha not showing --- lib/less/node/alpha.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/less/node/alpha.js b/lib/less/node/alpha.js index 91d8729..a2da3d0 100644 --- a/lib/less/node/alpha.js +++ b/lib/less/node/alpha.js @@ -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) + ")"; } };