17 lines
273 B
JavaScript
17 lines
273 B
JavaScript
|
$(document).ready(function(){
|
||
|
|
||
|
function HideCaseBody(){
|
||
|
$(this).parent().next().animate({
|
||
|
'min-height': 'toggle',
|
||
|
'height': 'toggle'
|
||
|
}, 500);
|
||
|
|
||
|
$(this).toggleClass('case__btn-close_open');
|
||
|
};
|
||
|
|
||
|
|
||
|
$('body').on('click',
|
||
|
'.case__btn-close',
|
||
|
HideCaseBody);
|
||
|
|
||
|
});
|