Change meni lvl-1 action

This commit is contained in:
Roman Pyrih
2025-10-24 09:55:19 +02:00
parent c9ab0d3734
commit 46e045229e
6 changed files with 49 additions and 20 deletions

BIN
templates_user/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -500,4 +500,20 @@
$(this).parent().parent().find('ul:first').slideToggle();
});
}
if ( windowsize > 991 ) {
$(function () {
$('body').on(
click_event,
'#header-nav #header-mine-menu .lvl-1 >li.parent >a',
function (e) {
e.preventDefault()
$(this).parent().toggleClass('active');
}
)
})
}
</script>