Workaround for Chrome problem on db search

This commit is contained in:
Marc Delisle
2011-02-02 07:43:28 -05:00
parent 2d9ffe0fa2
commit 30954728f3

View File

@@ -69,7 +69,10 @@ $(document).ready(function() {
// found results
$("#searchresults").html(response);
$("#sqlqueryresults").trigger('appendAnchor');
$('#db_search_form').hide();
$('#db_search_form')
// workaround for Chrome problem (bug #3168569)
.slideToggle()
.hide();
$('#togglesearchformlink')
// always start with the Show message
.text(PMA_messages['strShowSearchCriteria'])