Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for keydown (0.04 seconds)

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

  1. 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