(container)
| 100 | this.onStateChanged(container); |
| 101 | } |
| 102 | onDisplaying(container) { |
| 103 | let data = this.data; |
| 104 | if ("active" in data) |
| 105 | this.activate(container, data.active); |
| 106 | if ("name" in data) |
| 107 | model.DEVICE.first.behavior[data.name] = container; |
| 108 | super.onDisplaying(container); |
| 109 | } |
| 110 | onTouchBegan(container, id, x, y, ticks) { |
| 111 | super.onTouchBegan(container, id, x, y, ticks); |
| 112 | let data = this.data; |
nothing calls this directly
no test coverage detected