aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/js/thumbnails.loader.js
blob: e1eba51da9a647ad984a589e36f10ba25fb2d1a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var thumbnails_queue = jQuery.manageAjax.create('queued', {
  queue: true,  
  cacheResponse: false,
  maxRequests: 3,
  preventDoubleRequests: false
});

function add_thumbnail_to_queue(img, loop) {
  thumbnails_queue.add({
    type: 'GET', 
    url: img.data('src'), 
    data: { ajaxload: 'true' },
    dataType: 'json',
    success: function(result) {
      img.attr('src', result.url);
    },
    error: function() {
      if (loop < 3)
        add_thumbnail_to_queue(img, ++loop); // Retry 3 times
    }
  }); 
}

jQuery('img').each(function() {
  var img = jQuery(this);
  if (typeof img.data('src') != 'undefined') {
    add_thumbnail_to_queue(img, 0);
  }
});