Merge pull request #424 from kasunchathuranga/Bug3970
Fix bug 3970 - Pressing enter in the filter field reloads page
This commit is contained in:
commit
e3f0dcc423
@ -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
|
||||
|
||||
@ -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();
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user