fixed closing bracket for url not showing

This commit is contained in:
cloudhead 2010-03-04 13:54:32 -05:00
parent fde347016b
commit 6b938971df

View File

@ -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) + ")";
}
};