Skip to content

Commit

Permalink
801516 - Fixes issue with details tupane sizing on medium sized tupane
Browse files Browse the repository at this point in the history
lists.
(cherry picked from commit f104ae5)
  • Loading branch information
ehelms committed Mar 13, 2012
1 parent 299ecd5 commit 5bcf206
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/public/javascripts/panel.js
Expand Up @@ -321,7 +321,11 @@ KT.panel = (function ($) {
if (window_height <= (height + 80) && leftPanel.height() > 550) {
height = window_height - container_offset - default_spacing;
} else if( leftPanel.height() > 575 ){
height = window_height - container_offset - default_spacing;
if( leftPanel.height() < window_height ){
height = leftPanel.height() - default_spacing;
} else {
height = window_height - container_offset - default_spacing;
}
} else {
height = default_height - default_spacing + 20;
}
Expand Down

0 comments on commit 5bcf206

Please sign in to comment.