You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1011 B
JavaScript

jQuery(function () {
$("nav [href='" + window.location.href + "']").closest('li').addClass('current');
// console.log(
setTimeout(function () {
if ($("nav .current").closest('.main-nav').find('> a').attr('href') == undefined) {
$("nav .current").closest('.main-nav').find('> a').click();
}
if ($("nav .current").parent().parent().hasClass('rvnm-expandable')) {
$("nav .current").parent().parent().find('> a').click();
}
}, 500);
$("#menu-manage li").bind('dblclick', function () {
if (confirm('Are sure?')) {
let self = this;
axios.post($("#rem-menu").val() + '/' + $(this).data('menuableid')).then(function () {
$(self).slideUp();
});
}
});
window.addEventListener('load', function () {
if (!isRtl) {
document.querySelector('body').style.direction = 'ltr';
}
})
// );
// $("nav .current").closest('li').click();
});