mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 01:42:29 +02:00
bug:2684
picture page and comment_list.tpl clean up unused loader gif git-svn-id: http://piwigo.org/svn/trunk@20211 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -11,12 +11,17 @@ function add_thumbnail_to_queue(img, loop) {
|
||||
url: img.data('src'),
|
||||
data: { ajaxload: 'true' },
|
||||
dataType: 'json',
|
||||
beforeSend: function(){jQuery('.loader').show()},
|
||||
success: function(result) {
|
||||
img.attr('src', result.url);
|
||||
jQuery('.loader').hide();
|
||||
},
|
||||
error: function() {
|
||||
if (loop < 3)
|
||||
add_thumbnail_to_queue(img, ++loop); // Retry 3 times
|
||||
if ( typeof( error_icon ) != "undefined" )
|
||||
img.attr('src', error_icon);
|
||||
jQuery('.loader').hide();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user