Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for clientHeight (0.1 sec)

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

        // Compute position so menu stays visible and near the mouse.
        const x = Math.min(e.clientX - 10, document.body.clientWidth - menu.clientWidth);
        const y = Math.min(e.clientY - 10, document.body.clientHeight - menu.clientHeight);
        menu.style.left = x + 'px';
        menu.style.top = y + 'px';
        // Set menu links to operate on clicked box.
        setHrefParam('action-source', 'f', box.src);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        panLastX = x;
        panLastY = y;
    
        // Firefox workaround: get dimensions from parentNode.
        const swidth = svg.clientWidth || svg.parentNode.clientWidth;
        const sheight = svg.clientHeight || svg.parentNode.clientHeight;
    
        // Convert deltas from screen space to svg space.
        dx *= (svg.viewBox.baseVal.width / swidth);
        dy *= (svg.viewBox.baseVal.height / sheight);
    
        svg.viewBox.baseVal.x -= dx;
    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