Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for handleWheel (0.17 sec)

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

        //     x2 = u.x - (u.x - x1) * (w2 / w1)
        vb.baseVal.x = u.x - (u.x - vb.baseVal.x) * (w2 / w1);
        vb.baseVal.y = u.y - (u.y - vb.baseVal.y) * (h2 / h1);
      }
    
      function handleWheel(e) {
        if (e.deltaY == 0) return;
        // Change scale factor by 1.1 or 1/1.1
        rescale(currentScale * (e.deltaY < 0 ? 1.1 : (1/1.1)),
                toSvg(e.offsetX, e.offsetY));
      }
    
      function setMode(m) {
    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