Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2014-07-01 12:28:37 +0400
committerThomas Steur <tsteur@users.noreply.github.com>2014-07-01 12:28:37 +0400
commitecafc99d15fbd79e5526315bcddab65fc583aa6a (patch)
tree4b33d5f30fe1c0eec4c931dccb7081aa367f3234 /plugins/CoreHome/javascripts/corehome.js
parentaffc929feffc7a0d395a2128f463198dc80d4839 (diff)
fixes #5394 make sure content is visible before updating the report otherwise the dataTable.js handler might not work correct
Diffstat (limited to 'plugins/CoreHome/javascripts/corehome.js')
-rwxr-xr-xplugins/CoreHome/javascripts/corehome.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/javascripts/corehome.js b/plugins/CoreHome/javascripts/corehome.js
index e9b443af20..0dbfd48cb1 100755
--- a/plugins/CoreHome/javascripts/corehome.js
+++ b/plugins/CoreHome/javascripts/corehome.js
@@ -149,7 +149,7 @@
}
loading.hide();
- report.html($(response)).css('display', 'inline-block');
+ report.css('display', 'inline-block').html($(response));
// scroll to report
piwikHelper.lazyScrollTo(report, 400);