- make deals reachable - add recent search feature - add animation in profile menu - refactor blade markup of explore page
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
function showMenu(e){
|
|
const menu = e.nextElementSibling;
|
|
menu.classList.toggle('opacity-100');
|
|
menu.classList.toggle('scale-100');
|
|
}
|
|
|
|
document.showMenu = showMenu;
|