Clicking the top of the box should collapse it

merge-requests/31/head
Mike Koch 8 years ago
parent c3c13e6291
commit ed87d6fc87

@ -253,4 +253,9 @@ div.ticket-info {
height: 0;
width: 0;
overflow:hidden;
}
.box-header h1.box-title {
width: 100%;
cursor: pointer;
}

@ -85,6 +85,10 @@ var loadJquery = function()
.prop('selected', false)
.trigger('change');
});
$('.box-header h1.box-title').click(function() {
$(this).parent().find('[data-widget="collapse"]').click();
});
};
function calculateGrayCount(background) {

Loading…
Cancel
Save