mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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;
|
||||
} else {
|
||||
var components = isArray ? arg
|
||||
: arguments;//Array.prototype.slice.call(arguments);
|
||||
: Array.prototype.slice.call(arguments);
|
||||
if (!this._colorType) {
|
||||
// Called on the abstract Color class. Guess color type
|
||||
// from arg
|
||||
|
|
Loading…
Reference in a new issue