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

Commit

Permalink
Sticky footer fix with accordions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmr06005 committed Feb 26, 2015
1 parent b40545b commit 03a5dc4
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 @@ -246,11 +246,11 @@ $(window).resize(function() {
stickyFoot();
});

$('.panel').on('shown.bs.collapse', function (e) {
stickyFoot(wrapperH);
$('.panel, .collapse').on('shown.bs.collapse', function (e) {
stickyFoot();
})
$('.panel').on('hidden.bs.collapse', function (e) {
stickyFoot(wrapperH);
$('.panel, .collapse').on('hidden.bs.collapse', function (e) {
stickyFoot();
})

})

0 comments on commit 03a5dc4

Please sign in to comment.