mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 05:42:07 -05:00
Variable chaining.
This commit is contained in:
parent
32fb1b065e
commit
1473d82456
1 changed files with 8 additions and 8 deletions
|
@ -333,9 +333,9 @@ var Color = this.Color = Base.extend(new function() {
|
|||
|
||||
toCssString: function() {
|
||||
if (!this._cssString) {
|
||||
var color = this.convert('rgb');
|
||||
var alpha = color.getAlpha();
|
||||
var components = [
|
||||
var color = this.convert('rgb'),
|
||||
alpha = color.getAlpha(),
|
||||
components = [
|
||||
Math.round(color.getRed() * 255),
|
||||
Math.round(color.getGreen() * 255),
|
||||
Math.round(color.getBlue() * 255),
|
||||
|
|
Loading…
Reference in a new issue