Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for HIDE (0.01 seconds)

  1. src/main/webapp/js/search.js

              if (data.result === "created") {
                var $favorited = $favorite.siblings(".favorited");
                var $favoritedCount = $(".favorited-count", $favorited);
                $favoritedCount.hide();
                $favorite.fadeOut(FADE_DURATION, function() {
                  $favorited.fadeIn(FADE_DURATION);
                });
              }
            })
            .fail(function(jqXHR, textStatus, errorThrown) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  2. src/main/webapp/js/chat.js

        }
    
        /**
         * Hide progress indicator
         */
        function hideProgressIndicator() {
            elements.progressIndicator.addClass('d-none');
            state.currentPhase = null;
            state.completedPhases = [];
        }
    
        /**
         * Hide empty state
         */
        function hideEmptyState() {
            elements.emptyState.hide();
        }
    
        /**
         * Show empty state
    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)
  3. src/main/webapp/js/suggestor.js

                  }
                  suggestor.hideSuggestionBox();
                  suggestingSts = false;
                });
            },
    
            /**
             * Hide suggestion box and update ARIA attributes
             */
            hideSuggestionBox: function () {
              $boxElement.css("display", "none");
              $textArea.attr("aria-expanded", "false");
            },
    
    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