Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
BarbourSmith committed Jul 20, 2021
1 parent df56022 commit d289119
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/js/molecules/color.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ export default class Color extends Atom {
*/
this.description = "Changes the color of the shape."

/**
* The index of the currently selected color option.
* @type {number}
*/
this.selectedColorIndex = 0

/**
* The color options to choose from
* @type {array}
Expand Down Expand Up @@ -60,12 +66,6 @@ export default class Color extends Atom {
'Keep Out': 'Keep Out'
}

/**
* The index of the currently selected color option.
* @type {number}
*/
this.selectedColorIndex = 0

this.addIO('input', 'geometry', this, 'geometry', null, false, true)
this.addIO('output', 'geometry', this, 'geometry', null)

Expand Down

0 comments on commit d289119

Please sign in to comment.