Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for _keydown (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

              if ($boxElement.width() < minWidth) {
                $boxElement.width(minWidth);
              }
            }
          };
    
        suggestor.init($(this), setting);
    
        // Keydown event handler
        $(this).on("keydown", function (e) {
          if (isInputKey(e.keyCode)) {
            started = true;
            isFocusList = false;
          } else if (e.keyCode === KEY_CODES.UP) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  2. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    ent(".input-group.bootstrap-timepicker").find(".input-group-addon").on({"click.timepicker":a.proxy(this.showWidget,this)}),this.$element.on({"focus.timepicker":a.proxy(this.highlightUnit,this),"click.timepicker":a.proxy(this.highlightUnit,this),"keydown.timepicker":a.proxy(this.elementKeydown,this),"blur.timepicker":a.proxy(this.blurElement,this),"mousewheel.timepicker DOMMouseScroll.timepicker":a.proxy(this.mousewheel,this)})):this.template?this.$element.on({"focus.timepicker":a.proxy(this.show...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 18.2K bytes
    - Click Count (0)
  3. src/main/webapp/js/chat.js

            showStatus('ready');
        }
    
        /**
         * Bind event handlers
         */
        function bindEvents() {
            elements.sendBtn.on('click', sendMessage);
    
            elements.chatInput.on('keydown', function(e) {
                // Prevent sending during IME composition (Japanese, Chinese, etc.)
                if (e.key === 'Enter' && !e.shiftKey && !e.isComposing) {
                    e.preventDefault();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
Back to Top