Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Stickyfooter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmr06005 committed Feb 11, 2015
1 parent 2ab8a30 commit d245a17
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/cs.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,11 @@ function stickyFoot(wrapperHeight){
}
}
}
$(document).load(function (){
stickyFoot(pageH);
$(document).ready(function(){
stickyFoot(wrapperH);
});
$(document).resize(function() {
stickyFoot(pageH);
$(window).resize(function() {
stickyFoot(wrapperH);
});

$('.panel').on('shown.bs.collapse', function (e) {
Expand Down

0 comments on commit d245a17

Please sign in to comment.