Work around for Bug #3168569 - Issue on toggling the 'Hide search criteria' in chrome.

This commit is contained in:
Madhura Jayaratne
2011-02-01 11:47:22 +05:30
parent 36e8a23b87
commit 2cbabfd56f

View File

@@ -70,7 +70,10 @@ $(document).ready(function() {
// found results
$("#sqlqueryresults").html(response);
$("#sqlqueryresults").trigger('appendAnchor');
$('#tbl_search_form').hide();
$('#tbl_search_form')
// work around for bug #3168569 - Issue on toggling the "Hide search criteria" in chrome.
.slideToggle()
.hide();
$('#togglesearchformlink')
// always start with the Show message
.text(PMA_messages['strShowSearchCriteria'])