MCPcopy Index your code
hub / github.com/codeaashu/claude-code / handleTouchStart

Method handleTouchStart

src/server/web/public/terminal.js:916–918  ·  view source on GitHub ↗
(e3)

Source from the content-addressed store, hash-verified

914 return "alt" === i3 && t3.altKey || "ctrl" === i3 && t3.ctrlKey || "shift" === i3 && t3.shiftKey ? e3 * this._optionsService.rawOptions.fastScrollSensitivity * this._optionsService.rawOptions.scrollSensitivity : e3 * this._optionsService.rawOptions.scrollSensitivity;
915 }
916 handleTouchStart(e3) {
917 this._lastTouchY = e3.touches[0].pageY;
918 }
919 handleTouchMove(e3) {
920 const t3 = this._lastTouchY - e3.touches[0].pageY;
921 return this._lastTouchY = e3.touches[0].pageY, 0 !== t3 && (this._viewportElement.scrollTop += t3, this._bubbleScroll(e3, t3));

Callers 1

bindMouseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected