repoindex/web/js/expandcollapse.js

19 lines
462 B
JavaScript

$('.togglelink').on('click', function(e) {
e.preventDefault();
var $this = $(this);
var $collapse = $this.closest('.collapse-group').find('.collapse');
$collapse.collapse('toggle');
});
document.expandAll = function() {
$('.togglelink').each(function() {
var $this = $(this);
var $collapse = $this.closest('.collapse-group').find('.collapse');
$collapse.collapse();
});
}
document.onbeforeprint = function() {
document.expandAll();
}