Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for keyCodes (0.15 sec)

  1. src/main/webapp/js/suggestor.js

        $(this).keydown(function(e) {
          if (
            (e.keyCode >= 48 && e.keyCode <= 90) ||
            (e.keyCode >= 96 && e.keyCode <= 105) ||
            (e.keyCode >= 186 && e.keyCode <= 226) ||
            e.keyCode === 8 ||
            e.keyCode === 32 ||
            e.keyCode === 46
          ) {
            started = true;
            isFocusList = false;
          } else if (e.keyCode === 38) {
            if ($boxElement.css("display") !== "none") {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. test-site/public/javascripts/suggestor.js

            $(this).keydown( function(e){
                if( ((e.keyCode >= 48) && (e.keyCode <= 90))
                    || ((e.keyCode >= 96) && (e.keyCode <= 105))
                    || ((e.keyCode >= 186) && (e.keyCode <= 226))
                    || e.keyCode == 8
                    || e.keyCode == 32
                    || e.keyCode == 46
                ) {
                    started = true;
                    isFocusList = false;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  3. src/strings/replace.go

    			// what is currently t.prefix[0] will lead to prefixNode, and
    			// looking up key[0] will lead to keyNode.
    			var prefixNode *trieNode
    			if len(t.prefix) == 1 {
    				prefixNode = t.next
    			} else {
    				prefixNode = &trieNode{
    					prefix: t.prefix[1:],
    					next:   t.next,
    				}
    			}
    			keyNode := new(trieNode)
    			t.table = make([]*trieNode, r.tableSize)
    			t.table[r.mapping[t.prefix[0]]] = prefixNode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/file/store.go

    		// Or i + 1 has contents, which means "key:\n  value...", then perform one more DFS search
    		keyNode := nodeContent[i]
    		valueNode := nodeContent[i+1]
    		pathKeyForMap := fmt.Sprintf("%s.%s", curPath, keyNode.Value)
    
    		switch {
    		case valueNode.Kind == yamlv3.ScalarNode:
    			// Can build map because the value node has no content anymore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    },a.fn.validateOnEvent=function(b,c){var d="FORM"===this[0].nodeName?this.find("*[data-validation-event]"):this;return d.each(function(){var d=a(this),e=d.valAttr("event");e&&d.unbind(e+".validation").bind(e+".validation",function(d){9!==(d||{}).keyCode&&a(this).validateInputOnBlur(b,c,!0,e)})}),this},a.fn.showHelpOnFocus=function(b){return b||(b="data-validation-help"),this.find("textarea,input").each(function(){var c=a(this),e="jquery_form_help_"+ ++d,f=c.attr(b);c.removeClass("has-help-text")...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

            detailsText.style.display = 'none';
          } else {
            detailsText.style.display = 'block';
          }
        }
      }
    
      function handleKey(e) {
        if (e.keyCode != 13) return;
        setHrefParams(window.location, function (params) {
          params.set('f', search.value);
        });
        e.preventDefault();
      }
    
      function handleSearch() {
    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