Fix Color#getCanvasStyle.

This commit is contained in:
Jonathan Puckey 2011-03-04 17:54:36 +01:00
parent d54c30b9be
commit ff5ee13ba0

View file

@ -33,6 +33,6 @@ var Color = this.Color = Base.extend({
}, },
getCanvasStyle: function() { getCanvasStyle: function() {
return this.cssString; return this._cssString;
} }
}); });