Don't clear hash on navigation reload
This commit is contained in:
parent
34a7d63e06
commit
27533bdf7a
@ -95,7 +95,8 @@ $(function() {
|
||||
* Register event handler for click on the reload
|
||||
* navigation icon at the top of the panel
|
||||
*/
|
||||
$('#pma_navigation_reload').live('click', function () {
|
||||
$('#pma_navigation_reload').live('click', function (event) {
|
||||
event.preventDefault();
|
||||
PMA_reloadNavigation();
|
||||
});
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user