fix to undefined mixin error message

nohash
cloudhead 15 years ago
parent 177bd33e63
commit 40f8671bcd

@ -18,7 +18,7 @@ tree.mixin.Call.prototype = {
return rules;
}
}
throw new(Error)("mixin " + this.selector.toCSS() + " is undefined");
throw new(Error)(this.selector.toCSS().trim() + " is undefined");
}
};

Loading…
Cancel
Save