From 6b938971dfd180e59fe8d9d35eae18cb5d5fbab5 Mon Sep 17 00:00:00 2001 From: cloudhead Date: Thu, 4 Mar 2010 13:54:32 -0500 Subject: [PATCH] fixed closing bracket for url not showing --- lib/less/node/url.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/less/node/url.js b/lib/less/node/url.js index 2bbfa66..4b32866 100644 --- a/lib/less/node/url.js +++ b/lib/less/node/url.js @@ -5,6 +5,6 @@ tree.URL = function URL(val) { }; tree.URL.prototype = { toCSS: function () { - return "url(" + (this.value.toCSS ? this.value.toCSS() : this.value + ")"); + return "url(" + (this.value.toCSS ? this.value.toCSS() : this.value) + ")"; } };