From 07e5512e39151b93b50e41bc6143ad66bc813af5 Mon Sep 17 00:00:00 2001 From: Aleksandar Ivanov Date: Thu, 4 Sep 2014 13:11:50 +0300 Subject: [PATCH] Clear the jquery animation queue before hiding the .lb-loader The loader was staying visible when changing images rapidly. --- js/lightbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lightbox.js b/js/lightbox.js index 5f4b8af2..0a8f931a 100644 --- a/js/lightbox.js +++ b/js/lightbox.js @@ -271,7 +271,7 @@ // Display the image and it's details and begin preload neighboring images. Lightbox.prototype.showImage = function() { - this.$lightbox.find('.lb-loader').hide(); + this.$lightbox.find('.lb-loader').stop(true).hide(); this.$lightbox.find('.lb-image').fadeIn('slow'); this.updateNav();