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
Merge pull request #66 from jmr06005/master
Trigger sticky footer when accordion is expanded/collapsed
  • Loading branch information
jmr06005 committed Dec 4, 2014
2 parents cf4d68d + 65a2497 commit 688fc2e
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 688fc2e

Please sign in to comment.