mirror of https://github.com/4xmen/xshop.git
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.
24 lines
851 B
JavaScript
24 lines
851 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();
|
|
});
|
|
}
|
|
});
|
|
// );
|
|
// $("nav .current").closest('li').click();
|
|
});
|