Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for _clearTimeout (0.13 seconds)

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

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

        $(this).on("input", function () {
          if ($textArea.val() !== inputText) {
            if (!isFocusList && started && !suggestingSts) {
              // Clear existing timer and set new one to debounce rapid inputs
              clearTimeout(debounceTimer);
              debounceTimer = setTimeout(function () {
                suggestor.suggest();
              }, 300); // 300ms delay for debouncing
            }
          }
        });
    
        return this;
      };
    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)
Back to Top