From 7579767f7a30def4cd3134e333d5fa7d7b5d80f0 Mon Sep 17 00:00:00 2001 From: Jakub Skoczen Date: Thu, 7 Apr 2011 15:23:32 +0200 Subject: [PATCH] Try to stop that wheel spinning! --- mkdru.theme.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mkdru.theme.js b/mkdru.theme.js index ae40b0e..b3d1cda 100644 --- a/mkdru.theme.js +++ b/mkdru.theme.js @@ -233,6 +233,9 @@ Drupal.theme.prototype.mkdruCounts = function(first, last, available, total) { }; Drupal.theme.prototype.mkdruStatus = function(activeClients, clients) { + if (activeClients < 1) { + jQuery('a[href="#addon-0-result"]').removeClass('spinning'); + } return Drupal.t('Waiting on ') + activeClients + Drupal.t(' out of ') + clients + Drupal.t(' targets'); }; -- 1.7.10.4