(container, x, y)
| 92 | this.changeState(container, this.isSelected(container) ? 0 : 2); |
| 93 | } |
| 94 | onMouseExited(container, x, y) { |
| 95 | this.changeState(container, this.isSelected(container) ? 0 : 1); |
| 96 | } |
| 97 | onTouchBegan(container) { |
| 98 | this.changeState(container, 0); |
| 99 | this.select(container); |
no test coverage detected