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>2014-11-28 09:59:07 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2014-11-28 09:59:07 +0300
commitc397c9f2bbc9768e313892a394a4b00109ff0a8a (patch)
tree87637a2d4a01e0b575b918485033b2dd843f0c16 /js/tbl_zoom_plot_jqplot.js
parent803d63d32fd15192715891e92b03b04a91b63e44 (diff)
Use div id sqlqueryresultsouter in table search since sqlqueryresults clashes with the results returned
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 5057ec4435..3eab813ce8 100644
--- a/js/tbl_zoom_plot_jqplot.js
+++ b/js/tbl_zoom_plot_jqplot.js
@@ -400,8 +400,8 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () {
'inline_edit' : false
}, function (data) {
if (typeof data !== 'undefined' && data.success === true) {
- $('#sqlqueryresults').html(data.sql_query);
- $("#sqlqueryresults").trigger('appendAnchor');
+ $('#sqlqueryresultsouter').html(data.sql_query);
+ PMA_highlightSQL($('#sqlqueryresultsouter'));
} else {
PMA_ajaxShowMessage(data.error, false);
}