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

Commit

Permalink
Merge pull request #102 from jmr06005/master
Browse files Browse the repository at this point in the history
Stickyfooter fix
  • Loading branch information
jmr06005 committed Feb 11, 2015
2 parents 2ab8a30 + d245a17 commit 416a847
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 416a847

Please sign in to comment.