Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findTouch (0.08 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        if (mode == TOUCHPAN) {
          const t = findTouch(e.changedTouches, touchid);
          if (t == null) return;
          if (e.touches.length != 1) {
            setMode(IDLE);
            return;
          }
          panMove(t.clientX, t.clientY);
          e.preventDefault();
        } else if (mode == TOUCHZOOM) {
          // Get two touches; new gap; rescale to ratio.
          const t1 = findTouch(e.touches, touchid);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top