22 lines
401 B
JavaScript
22 lines
401 B
JavaScript
import 'slick-carousel';
|
|
|
|
$(function(){
|
|
console.log("$ ready !!");
|
|
$('.last-news').slick();
|
|
$('.last-ressources').slick();
|
|
|
|
$('.close-block').click(function(){
|
|
$(this).parent().fadeOut();
|
|
});
|
|
$('.open-block').click(function(){
|
|
$(this).prev().css("display","grid");
|
|
});
|
|
|
|
$('.views-element-container header').click(function(){
|
|
$(this).parent().find(".views-row").fadeToggle();
|
|
})
|
|
|
|
|
|
});
|
|
|