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

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-01-15 12:13:24 +0400
committerMichal Čihař <mcihar@suse.cz>2013-01-15 12:13:24 +0400
commit7ddc71c033256baad76957c42fc1b9ad83bac8e7 (patch)
treeaf5582e87f3755127631eab425b90daa4dbc1ef0 /js/tbl_chart.js
parent7e968cf30e811fd2dc51ae754907d01049468505 (diff)
Fix possibly wrong commas
Diffstat (limited to 'js/tbl_chart.js')
-rw-r--r--js/tbl_chart.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/tbl_chart.js b/js/tbl_chart.js
index f139ca06e7..050d020c91 100644
--- a/js/tbl_chart.js
+++ b/js/tbl_chart.js
@@ -52,8 +52,8 @@ $(document).ready(function() {
}
},
title: {
- text: $('input[name="chartTitle"]').attr('value')
- escapeHtml: true,
+ text: $('input[name="chartTitle"]').attr('value'),
+ escapeHtml: true
//margin:20
},
legend: {
@@ -246,8 +246,8 @@ function PMA_queryChart(data, passedSettings, passedNonJqplotSettings)
var settings = {
title: {
- text: ''
- escapeHtml: true,
+ text: '',
+ escapeHtml: true
//margin:20
}
};