Skip to content
Browse files

Merge pull request #7585 from hallaathrad/fix/drawer-issues

Fix map overlapping issues
  • Loading branch information...
2 parents 1533be6 + bcfe8b9 commit 22744fcbdfbc18d2452e3c40eda9be185740770a @raisedadead raisedadead committed
Showing with 2 additions and 2 deletions.
  1. +2 −2 client/main.js
View
4 client/main.js
@@ -298,12 +298,12 @@ $(document).ready(function() {
}
function expandBlock(item) {
- $(item).addClass('in');
+ $(item).addClass('in').css('height', 'auto');
expandCaret(item);
}
function collapseBlock(item) {
- $(item).removeClass('in');
+ $(item).removeClass('in').css('height', 'auto');
collapseCaret(item);
}

0 comments on commit 22744fc

Please sign in to comment.
Something went wrong with that request. Please try again.