Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2014-11-18 13:21:06 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2014-11-18 13:21:06 +0300
commitb802b5f9b3df79ae10f06e1491d287893a5519fc (patch)
tree1100f42566660489554624277c4e79d96340ede9 /js/navigation.js
parent687e78d2cc9ec08a50bf79ef00232136cfd516bf (diff)
Bug #4591 Spinner in navigation running forever
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/navigation.js')
-rw-r--r--js/navigation.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/js/navigation.js b/js/navigation.js
index 914aa54158..a72647dc7e 100644
--- a/js/navigation.js
+++ b/js/navigation.js
@@ -366,7 +366,6 @@ $(function () {
});
// Initialize if no previous state is defined
if (typeof storage.navTree === 'undefined') {
- PMA_showCurrentNavigation();
navTreeStateUpdate();
} else if (PMA_commonParams.get('server') === storage.server &&
PMA_commonParams.get('token') === storage.token
@@ -375,8 +374,6 @@ $(function () {
$('#pma_navigation_tree_content').html(storage.navTree);
$('div.pageselector.dbselector').html(storage.page);
}
- } else {
- PMA_showCurrentNavigation();
}
});