fix to undefined mixin error message

This commit is contained in:
cloudhead
2010-03-19 19:46:37 -04:00
parent 2733686931
commit 26d12af25a

View File

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