(code)
| 335 | onSelected(code) { |
| 336 | } |
| 337 | onTimeChanged(code) { |
| 338 | var scroller = this.getScroller(code); |
| 339 | var t = Date.now(); |
| 340 | scroller.scrollBy(this.dx * this.acceleration * (t - this.tx), this.dy * this.acceleration * (t - this.ty)); |
| 341 | this.onTouchSelect(code, this.x, this.y); |
| 342 | } |
| 343 | onTouchBegan(code, id, x, y, ticks) { |
| 344 | code.captureTouch(id, x, y, ticks); |
| 345 | this.onTouchBeganMode(code, id, x, y, ticks, CHAR_MODE); |
nothing calls this directly
no test coverage detected