Quoted.eval returns self

This commit is contained in:
cloudhead 2010-02-25 17:55:26 -05:00
parent b84ec0b67f
commit c8f5997c27

View File

@ -1,5 +1,10 @@
node.Quoted = function Quoted(value) { this.value = value };
node.Quoted.prototype.toCSS = function () {
var css = this.value;
return css;
node.Quoted.prototype = {
toCSS: function () {
var css = this.value;
return css;
},
eval: function () {
return this;
}
};