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:
authorxmujay <xmujay@gmail.com>2013-05-05 16:49:15 +0400
committerxmujay <xmujay@gmail.com>2013-05-05 16:49:15 +0400
commit9eb23b5aec575549229ad9901be6f82233e6564c (patch)
treec9f6e1078c4437c92b71e46691da6dbbdf2c3f84 /js/tbl_zoom_plot_jqplot.js
parent0bbe382e7a3f37704ff7331da34b282a9e2a450f (diff)
fix some JSLint error: using dot notation
Diffstat (limited to 'js/tbl_zoom_plot_jqplot.js')
-rw-r--r--js/tbl_zoom_plot_jqplot.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tbl_zoom_plot_jqplot.js b/js/tbl_zoom_plot_jqplot.js
index f6a0532403..369ce6aa48 100644
--- a/js/tbl_zoom_plot_jqplot.js
+++ b/js/tbl_zoom_plot_jqplot.js
@@ -377,7 +377,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () {
}
}
sql_query = sql_query.substring(0, sql_query.length - 2);
- sql_query += ' WHERE ' + PMA_urldecode(searchedData[searchedDataKey]['where_clause']);
+ sql_query += ' WHERE ' + PMA_urldecode(searchedData[searchedDataKey].where_clause);
//Post SQL query to sql.php
$.post('sql.php', {
@@ -546,7 +546,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () {
// extra Y values
value[dataLabel], // for highlighter
// (may set an undefined value)
- value['where_clause'], // for click on point
+ value.where_clause, // for click on point
key // key from searchedData
]);
});