Skip to content

Commit

Permalink
* ignore table footer active event, fixed 'outer' height.
Browse files Browse the repository at this point in the history
  • Loading branch information
catouse committed Mar 17, 2014
1 parent 9b10480 commit cca768f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/js/my.full.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ function setOuterBox()
{
var resetOuterHeight = function()
{
$('#wrap .outer').css('min-height', $(window).height() - $('#header').height() - $('#header').height() - 33);
$('#wrap .outer').css('min-height', $(window).height() - $('#header').height() - $('#footer').height() - 33);
}

$(window).resize(resetOuterHeight);
Expand Down Expand Up @@ -934,7 +934,7 @@ function setModal()
*/
function setTableBehavior()
{
$('#wrap .table td').click(function(){$(this).closest('tr').toggleClass('active');});
$('#wrap .table tbody td').click(function(){$(this).closest('tr').toggleClass('active');});
}

/* Ping the server every some minutes to keep the session. */
Expand Down

0 comments on commit cca768f

Please sign in to comment.