Don't clear hash on navigation reload

This commit is contained in:
Rouslan Placella 2012-08-11 13:26:09 +02:00
parent 34a7d63e06
commit 27533bdf7a

View File

@ -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();
});