Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for filterBadge (0.05 seconds)

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

  1. src/main/webapp/js/chat.js

                progressMessage: $('#progressMessage'),
                errorBanner: $('#errorBanner'),
                charCount: $('#charCount'),
                filterToggleBtn: $('#filterToggleBtn'),
                filterBadge: $('#filterBadge'),
                filterPanel: $('#filterPanel')
            };
    
            bindEvents();
            autoResizeTextarea();
            updateCharCount();
            showStatus('ready');
        }
    
        /**
    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)
  2. src/main/webapp/WEB-INF/view/chat/chat.jsp

    								<i class="fa fa-filter" aria-hidden="true"></i>
    								<la:message key="labels.chat_filter" />
    								<span id="filterBadge" class="badge rounded-pill bg-primary d-none">0</span>
    							</button>
    							<button type="button" id="newChatBtn" class="btn btn-outline-secondary btn-sm" aria-label="<la:message key="labels.chat_new_chat" />">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  3. src/main/webapp/css/chat.css

    .filter-clear-group {
        font-size: 0.75rem;
        color: #6b778c;
        text-decoration: none;
        padding: 0.125rem 0.375rem;
    }
    
    .filter-clear-group:hover {
        color: #de350b;
    }
    
    #filterBadge {
        font-size: 0.6875rem;
        margin-left: 0.25rem;
    }
    
    /* ============================================
       Chat card container
       ============================================ */
    .card.shadow-sm {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
Back to Top