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

Commit

Permalink
Browse files Browse the repository at this point in the history
Trigger sticky footer when accordion is expanded/collapsed
  • Loading branch information
jmr06005 committed Dec 3, 2014
1 parent 6b8fe3c commit 65a2497
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion js/cs.js
Expand Up @@ -244,6 +244,12 @@ window.onresize = function() {
stickyFoot();

}


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

})

0 comments on commit 65a2497

Please sign in to comment.