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:
authorMarc Delisle <marc@infomarc.info>2014-08-03 16:01:32 +0400
committerMarc Delisle <marc@infomarc.info>2014-08-03 16:01:32 +0400
commitbc14e8e24aae3dc15d4eb199d06562fb0a9d8753 (patch)
treeb045c2c111645f24ddfe0a663565232087a8c456 /js/tbl_zoom_plot_jqplot.js
parent45dc97b7f1bfeadb5407b76a826aa9cb36ce758d (diff)
Avoid empty block notices
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'js/tbl_zoom_plot_jqplot.js')
-rw-r--r--js/tbl_zoom_plot_jqplot.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/tbl_zoom_plot_jqplot.js b/js/tbl_zoom_plot_jqplot.js
index a22ce963ea..a19a4ebc8d 100644
--- a/js/tbl_zoom_plot_jqplot.js
+++ b/js/tbl_zoom_plot_jqplot.js
@@ -329,7 +329,8 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () {
series[0][searchedDataKey][0] =
getTimeStamp(selectedRow[xLabel], $('#types_0').val());
} else {
- ; // TODO: text values
+ series[0][searchedDataKey][0] = '';
+ // TODO: text values
}
currentChart.series[0].data = series[0];
// TODO: axis changing
@@ -345,7 +346,8 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () {
series[0][searchedDataKey][1] =
getTimeStamp(selectedRow[yLabel], $('#types_1').val());
} else {
- ; // TODO: text values
+ series[0][searchedDataKey][1] = '';
+ // TODO: text values
}
currentChart.series[0].data = series[0];
// TODO: axis changing