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:
authorStefan Giehl <stefan@matomo.org>2019-03-28 10:52:22 +0300
committerGitHub <noreply@github.com>2019-03-28 10:52:22 +0300
commit4d6d98b9ca85c067a94d313f0b2a659bc1575940 (patch)
tree7dd0b28737ecdc86d9ea0ea3a966a117864345cd /plugins/CoreVisualizations
parentfc81f4e8dcd076a3cc8523b7a78a95821ad1b7f8 (diff)
Ensure first row is highlighted after switching periods (#14212)
Diffstat (limited to 'plugins/CoreVisualizations')
-rw-r--r--plugins/CoreVisualizations/javascripts/jqplot.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/CoreVisualizations/javascripts/jqplot.js b/plugins/CoreVisualizations/javascripts/jqplot.js
index 9b16391757..6e9d53e4d9 100644
--- a/plugins/CoreVisualizations/javascripts/jqplot.js
+++ b/plugins/CoreVisualizations/javascripts/jqplot.js
@@ -761,6 +761,7 @@ RowEvolutionSeriesToggle.prototype.attachEvents = function () {
// show the active series
// if initiallyShowAll, all are active; otherwise only the first one
self.activated.push(true);
+ el.find('td').css('opacity', '');
} else {
// fade out the others
el.find('td').css('opacity', .5);