Merge pull request #424 from kasunchathuranga/Bug3970

Fix bug 3970 - Pressing enter in the filter field reloads page
This commit is contained in:
Marc Delisle 2013-06-14 11:53:04 -07:00
commit e3f0dcc423
2 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog
4.0.5.0 (not yet released)
- bug #3977 Not detected configuration storage
- bug #3970 Pressing enter in the filter field reloads page
4.0.4.0 (not yet released)
- bug #3959 Using DefaultTabDatabase in NavigationTree for Database Click

View File

@ -14,6 +14,11 @@ $(function() {
return;
}
// Do not let the page reload on submitting the fast filter
$(document).on('submit', '.fast_filter', function(event) {
event.preventDefault();
});
// Fire up the resize handlers
new ResizeHandler();