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:
authorsgiehl <stefan@piwik.org>2013-08-14 22:35:44 +0400
committersgiehl <stefan@piwik.org>2013-08-15 00:57:24 +0400
commit6e61f2725126e276862ec6153e80e5f6db5cb4e1 (patch)
tree98087b064adf11ad1781345de9f72beb1c761ddb /plugins/CoreVisualizations
parent512a8f82444d6293ee0544354da888553f01f29d (diff)
replaced presentational html tags
Diffstat (limited to 'plugins/CoreVisualizations')
-rw-r--r--plugins/CoreVisualizations/javascripts/jqplot.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CoreVisualizations/javascripts/jqplot.js b/plugins/CoreVisualizations/javascripts/jqplot.js
index 358486ddad..499e14bfe1 100644
--- a/plugins/CoreVisualizations/javascripts/jqplot.js
+++ b/plugins/CoreVisualizations/javascripts/jqplot.js
@@ -174,7 +174,7 @@ JQPlot.prototype = {
}
var label = self.params.axes.xaxis.labels[i];
- var text = '<b>' + value + '</b> ' + series + percentage;
+ var text = '<strong>' + value + '</strong> ' + series + percentage;
$(this).tooltip({
track: true,
items: '*',
@@ -190,7 +190,7 @@ JQPlot.prototype = {
var label = self.data[0][i][0];
- var text = '<b>' + percentage + '%</b> (' + value + ' ' + series + ')';
+ var text = '<strong>' + percentage + '%</strong> (' + value + ' ' + series + ')';
$(this).tooltip({
track: true,
items: '*',
@@ -391,7 +391,7 @@ JQPlot.prototype = {
for (var d = 0; d < self.data.length; d++) {
var value = self.formatY(self.data[d][tick], d);
var series = self.params.series[d].label;
- text.push('<b>' + value + '</b> ' + series);
+ text.push('<strong>' + value + '</strong> ' + series);
}
$(this).tooltip({
track: true,