This commit is contained in:
Fred Tempez 2021-03-11 14:57:26 +01:00
commit 3c385f4a41
1 changed files with 14 additions and 0 deletions

View File

@ -474,6 +474,20 @@ $(document).ready(function(){
};
});
/**
* Active le système d'aide interne
*
*/
$(".helpDisplayButton").on({
mouseenter: function () {
$(".helpDisplayContent").slideDown();
},
mouseleave: function () {
$(".helpDisplayContent").slideUp();
}
});
/**
* Remove ID Facebook from URL
*/