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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-07-02 20:22:09 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-07-02 20:22:09 +0300
commit42a408894378c551d9e1199f7960ca834f7c8a47 (patch)
tree51b6eb400f7e6dff7e4ee1e9db75aae7eb0bd6ac /js/tbl_zoom_plot_jqplot.js
parent30418f37a3299c0d7105ed0dea40e895698aae22 (diff)
More local variables
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
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 235b067512..a97dfa0113 100644
--- a/js/tbl_zoom_plot_jqplot.js
+++ b/js/tbl_zoom_plot_jqplot.js
@@ -612,8 +612,8 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () {
// now fill the displayResultForm with row values
var key;
for (key in data.row_info) {
- $field = $('#edit_fieldID_' + field_id);
- $field_null = $('#edit_fields_null_id_' + field_id);
+ var $field = $('#edit_fieldID_' + field_id);
+ var $field_null = $('#edit_fields_null_id_' + field_id);
if (data.row_info[key] === null) {
$field_null.prop('checked', true);
$field.val('');