Try to stop that wheel spinning!
authorJakub Skoczen <jakub@indexdata.dk>
Thu, 7 Apr 2011 13:23:32 +0000 (15:23 +0200)
committerJakub Skoczen <jakub@indexdata.dk>
Thu, 7 Apr 2011 13:23:32 +0000 (15:23 +0200)
mkdru.theme.js

index ae40b0e..b3d1cda 100644 (file)
@@ -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');
 };