Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for onmousedown (0.39 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    Selection=clearSelection;plot.setSelection=setSelection;plot.getSelection=getSelection;plot.hooks.bindEvents.push(function(plot,eventHolder){var o=plot.getOptions();if(o.selection.mode!=null){eventHolder.mousemove(onMouseMove);eventHolder.mousedown(onMouseDown)}});plot.hooks.drawOverlay.push(function(plot,ctx){if(selection.show&&selectionIsSane()){var plotOffset=plot.getPlotOffset();var o=plot.getOptions();ctx.save();ctx.translate(plotOffset.left,plotOffset.top);var c=$.color.parse(o.selection.c...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    setupHandlers(root);
    
    /**
     * Register handlers
     */
    function setupHandlers(root){
    	setAttributes(root, {
    		"onmouseup" : "handleMouseUp(evt)",
    		"onmousedown" : "handleMouseDown(evt)",
    		"onmousemove" : "handleMouseMove(evt)",
    		//"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element
    	});
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          activeMenu = menu;
          activeMenuHdr = hdr;
          menu.style.display = 'block';
        }
        hdr.addEventListener('mousedown', showMenu);
        hdr.addEventListener('touchstart', showMenu);
      }
    
      // If there is an active menu and a down event outside, retract the menu.
      for (const t of ['mousedown', 'touchstart']) {
        document.addEventListener(t, (e) => {
          // Note: to avoid unnecessary flicker, if the down event is inside
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/main/webapp/js/search.js

        $("#langSearchOption").prop("selectedIndex", 0);
        $("#sortSearchOption").prop("selectedIndex", 0);
        $("#numSearchOption").prop("selectedIndex", 0);
        return false;
      });
    
      $result.on("mousedown", "a.link", function(e) {
        var docId = $(this).attr("data-id"),
          rt = $("#rt").val(),
          queryId = $("#queryId").val(),
          order = $(this).attr("data-order"),
          url = $(this).attr("href"),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    ype:"hide.timepicker",time:{value:this.getTime(),hours:this.hour,minutes:this.minute,seconds:this.second,meridian:this.meridian}}),"modal"===this.template&&this.$widget.modal?this.$widget.modal("hide"):this.$widget.removeClass("open"),a(c).off("mousedown.timepicker, touchend.timepicker",this.handleDocumentClick),this.isOpen=!1,this.$widget.detach())},highlightUnit:function(){this.position=this.getCursorPosition(),this.position>=0&&this.position<=2?this.highlightHour():this.position>=3&&this.posi...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                  // also explicitly...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      window.addEventListener('popstate', render);
      search.addEventListener('keydown', handleSearchKey);
    
      // Withdraw action menu when clicking outside, or when item selected.
      document.addEventListener('mousedown', (e) => {
        if (!actions.contains(e.target)) {
          hideActionMenu();
        }
      });
      actions.addEventListener('click', hideActionMenu);
    
      // Initialize menus and other general UI elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/html.go

            svg.addEventListener('pointermove', drag);
            svg.addEventListener('pointerup', endDrag);
            svg.addEventListener('pointerleave', endDrag);
        } else {
            svg.addEventListener('mousedown', startDrag);
            svg.addEventListener('mousemove', drag);
            svg.addEventListener('mouseup', endDrag);
            svg.addEventListener('mouseleave', endDrag);
        }
    
        var point = svg.createSVGPoint();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/static/trace_viewer_full.html

    MouseTracker.prototype={get targetElement(){return this.targetElement_;},set targetElement(targetElement){if(this.targetElement_){this.targetElement_.removeEventListener('mousedown',this.onMouseDown_);}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    							var trgt = $(event.target);
    							// if(trgt.is("ins") && event.pageY - trgt.offset().top < this.data.core.li_height) { this.toggle_node(trgt); }
    							this.toggle_node(trgt);
    						}, this))
    					.bind("mousedown.jstree", $.proxy(function () {
    							this.set_focus(); // This used to be setTimeout(set_focus,0) - why?
    						}, this))
    					.bind("dblclick.jstree", function (event) {
    						var sel;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top