Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for addClass (0.03 seconds)

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

  1. src/main/webapp/js/index.js

        if ($icon.length > 0) {
          $icon.removeClass("fa fa-search").addClass("spinner-border spinner-border-sm");
        }
        setTimeout(function() {
          $searchButton.prop("disabled", false);
          var $spinner = $searchButton.find(".spinner-border");
          if ($spinner.length > 0) {
            $spinner.removeClass("spinner-border spinner-border-sm").addClass("fa fa-search");
          }
        }, BUTTON_DISABLE_DURATION);
        return true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  2. src/main/webapp/js/search.js

        if ($icon.length > 0) {
          $icon.removeClass("fa fa-search").addClass("spinner-border spinner-border-sm");
        }
        setTimeout(function() {
          $searchButton.prop("disabled", false);
          var $spinner = $searchButton.find(".spinner-border");
          if ($spinner.length > 0) {
            $spinner.removeClass("spinner-border spinner-border-sm").addClass("fa fa-search");
          }
        }, BUTTON_DISABLE_DURATION);
        return true;
    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)
  3. src/main/webapp/js/login.js

          }
          return false;
        }
      });
    
      $(".table tr[data-href]").each(function() {
        var $row = $(this);
        $row.css("cursor", "pointer")
          .on("mouseenter", function() {
            $(this).addClass("active");
          })
          .on("mouseleave", function() {
            $(this).removeClass("active");
          })
          .on("click", function() {
            window.location.href = $(this).attr("data-href");
          });
      });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  4. src/main/webapp/js/profile.js

          }
          return false;
        }
      });
    
      $(".table tr[data-href]").each(function() {
        var $row = $(this);
        $row.css("cursor", "pointer")
          .on("mouseenter", function() {
            $(this).addClass("active");
          })
          .on("mouseleave", function() {
            $(this).removeClass("active");
          })
          .on("click", function() {
            window.location.href = $(this).attr("data-href");
          });
      });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  5. src/main/webapp/js/chat.js

            var counter = elements.charCount.parent();
            counter.removeClass('warning danger');
            if (count >= maxLength * 0.95) {
                counter.addClass('danger');
            } else if (count >= maxLength * 0.8) {
                counter.addClass('warning');
            }
        }
    
        /**
         * Copy text to clipboard
         */
        function copyToClipboard(text, button) {
    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