Skip to content

Commit

Permalink
Trim trailing space in navigation.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mynetx committed Aug 26, 2013
1 parent ccba470 commit 34633b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $(function() {
event.stopImmediatePropagation();
PMA_expandNavigationTree($(this));
});

/**
* Register event handler for click on the reload
* navigation icon at the top of the panel
Expand Down Expand Up @@ -262,15 +262,15 @@ function PMA_autoExpandDatabaseInUse($oldDb, $newDb) {
//scroll to new database
if ($oldDb !== $newDb) {
setTimeout(function() {
scrollToView($expandElem.closest('li'), $('#pma_navigation_tree_content'));
scrollToView($expandElem.closest('li'), $('#pma_navigation_tree_content'));
}, 150);
}
}

/**
* Reloads the whole navigation tree while preserving its state
*
* @param function the callback function
* @param function the callback function
* @return void
*/
function PMA_reloadNavigation(callback) {
Expand Down

0 comments on commit 34633b2

Please sign in to comment.