(index, arr?)
| 640 | } |
| 641 | |
| 642 | get_label(index, arr?) { |
| 643 | //arr is optional. If you do not pass anything, this.names is |
| 644 | //considered arr. |
| 645 | if (arr === undefined || arr === null) { |
| 646 | arr = this.names; |
| 647 | } |
| 648 | return arr.length > index ? arr[index] : index; |
| 649 | } |
| 650 | |
| 651 | multi_brush_move(item) { |
| 652 | if (this.ignoreBrushEvents) { |
no outgoing calls
no test coverage detected