Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2013-01-15 09:29:35 +01:00
commit 55ebbeeae4
2 changed files with 8 additions and 3 deletions

View File

@ -1136,7 +1136,10 @@ AJAX.registerOnload('server_status_monitor.js', function() {
function addChart(chartObj, initialize) {
var settings = {
title: chartObj.title,
title: {
text: chartObj.title,
escapeHtml: true
},
grid: {
drawBorder: false,
shadow: false,

View File

@ -70,7 +70,8 @@ AJAX.registerOnload('tbl_chart.js', function() {
}
},
title: {
text: $('input[name="chartTitle"]').attr('value')
text: $('input[name="chartTitle"]').attr('value'),
escapeHtml: true
//margin:20
},
legend: {
@ -286,7 +287,8 @@ function PMA_queryChart(data, passedSettings, passedNonJqplotSettings)
var settings = {
title: {
text: ''
text: '',
escapeHtml: true
//margin:20
}
};