fix

parent e5eb4d40
...@@ -53,12 +53,12 @@ $(document).ready(function() { ...@@ -53,12 +53,12 @@ $(document).ready(function() {
if ($('.dep_block_hide__btn').text() == $(this).data('show')){ if ($('.dep_block_hide__btn').text() == $(this).data('show')){
$('.dep_block__hide').slideDown(1000); $('.dep_block__hide').slideDown(1000);
$(this).text($(this).data('hide')); $(this).text($(this).data('hide'));
$('.dep_block .line_hide').slideDown(500); $('.dep_block .line_hide').fadeTo( "slow" , 0);
} }
else { else {
$('.dep_block__hide').slideUp(1000); $('.dep_block__hide').slideUp(1000);
$(this).text($(this).data('show')); $(this).text($(this).data('show'));
$('.dep_block .line_hide').slideUp(500); $('.dep_block .line_hide').fadeTo( "slow" , 1);
} }
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment