Skip to content

Commit

Permalink
Merge branch 'QA_4_6'
Browse files Browse the repository at this point in the history
  • Loading branch information
devenbansod committed Aug 9, 2016
2 parents eec4856 + 6c8513b commit a9f0002
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/db_search.js
Expand Up @@ -48,16 +48,16 @@ function loadResult(result_path, table_name, link)
$.get(url, {'ajax_request': true, 'is_js_confirmed': true}, function (data) {
if (typeof data !== 'undefined' && data.success) {
$('#browse-results').html(data.message);
$('html, body')
.animate({
scrollTop: $("#browse-results").offset().top
}, 1000);
PMA_ajaxRemoveMessage($msg);
$('.table_results').each(function () {
PMA_makegrid(this, true, true, true, true);
});
$('#browse-results').show();
PMA_highlightSQL($('#browse-results'));
$('html, body')
.animate({
scrollTop: $("#browse-results").offset().top
}, 1000);
} else {
PMA_ajaxShowMessage(data.error, false);
}
Expand Down

0 comments on commit a9f0002

Please sign in to comment.