Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for loadImage (0.03 seconds)

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

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

      }
    
      var loadImage = function(img, url, limit) {
        var imgData = new Image();
    
        $(imgData).on("load", function() {
          $(img).css("background-image", "");
          $(img).attr("src", url);
        });
    
        $(imgData).on("error", function() {
          if (limit > 0) {
            setTimeout(function() {
              loadImage(img, url, limit - 1);
            }, IMG_LOADING_DELAY);
    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)
Back to Top