mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Fix mistake in earlier commit.
This commit is contained in:
parent
3f8f539aeb
commit
f8f6754068
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ var Color = this.Color = Base.extend(new function() {
|
||||||
: rgbColor;
|
: rgbColor;
|
||||||
} else {
|
} else {
|
||||||
var components = isArray ? arg
|
var components = isArray ? arg
|
||||||
: arguments;//Array.prototype.slice.call(arguments);
|
: Array.prototype.slice.call(arguments);
|
||||||
if (!this._colorType) {
|
if (!this._colorType) {
|
||||||
// Called on the abstract Color class. Guess color type
|
// Called on the abstract Color class. Guess color type
|
||||||
// from arg
|
// from arg
|
||||||
|
|
Loading…
Reference in a new issue