Skip to content

Commit

Permalink
"User list should expand to fill-in all available vertical space" fix…
Browse files Browse the repository at this point in the history
…ed [#131 state:resolved]
  • Loading branch information
ignatov committed Aug 12, 2011
1 parent 8c2c8dc commit 785eee1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/webapp/scripts/cosettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,12 @@ $(document).ready(function() {
$(".create").validate();

$("#categories_table > tbody > tr:last > td").css({'border': 'none'});

$(function() {
$(window).resize(function() {
var userList = $('#user_list');
userList.height($(window).height() - userList.offset().top);
});
$(window).resize();
});
});

0 comments on commit 785eee1

Please sign in to comment.