From b961c95121e5e4d4342a2926746dbf8a62bd77ea Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Fri, 18 Nov 2016 10:06:07 -0800 Subject: [PATCH] dim visualization during refresh (#1636) --- superset/assets/javascripts/modules/superset.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/superset/assets/javascripts/modules/superset.js b/superset/assets/javascripts/modules/superset.js index 0eb5da6f4b..ac1def0b02 100644 --- a/superset/assets/javascripts/modules/superset.js +++ b/superset/assets/javascripts/modules/superset.js @@ -123,6 +123,7 @@ const px = function () { clearInterval(timer); token.find('img.loading').hide(); + container.fadeTo(0.5, 1); container.show(); if (data !== undefined) { @@ -153,6 +154,7 @@ const px = function () { error(msg, xhr) { let errorMsg = msg; token.find('img.loading').hide(); + container.fadeTo(0.5, 1); let errHtml = ''; try { const o = JSON.parse(msg); @@ -210,6 +212,7 @@ const px = function () { this.force = force; } token.find('img.loading').show(); + container.fadeTo(0.5, 0.25); container.css('height', this.height()); dttm = 0; timer = setInterval(stopwatch, 10); @@ -219,6 +222,7 @@ const px = function () { }, resize() { token.find('img.loading').show(); + container.fadeTo(0.5, 0.25); container.css('height', this.height()); this.viz.render(); this.viz.resize();