Merge remote-tracking branch 'origin/QA_3_5' into QA_3_5

This commit is contained in:
Michal Čihař 2012-04-21 20:19:52 +02:00
commit 70dcbf3bc7

View File

@ -1126,7 +1126,7 @@ $(function() {
}
dlgBtns = {};
dlgBtns['Save'] = function() {
dlgBtns[PMA_messages['strSave']] = function() {
runtime.charts[chartKey].title = $('div#emptyDialog input[name="chartTitle"]').attr('value');
runtime.charts[chartKey].chart.setTitle({ text: runtime.charts[chartKey].title });
@ -1139,7 +1139,7 @@ $(function() {
$(this).dialog('close');
saveMonitor();
};
dlgBtns['Cancel'] = function() {
dlgBtns[PMA_messages['strCancel']] = function() {
$(this).dialog('close');
};