$('.dropdown-menu a.dropdown-toggle').on('click', function(e) {
    if (!$(this).next().hasClass('show')) {
        $(this).parents('.dropdown-menu').first().find('.show').removeClass('show');
    }
    var $subMenu = $(this).next('.dropdown-menu');
    $subMenu.toggleClass('show');


    $(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
        $('.dropdown-submenu .show').removeClass('show');
    });


    return false;
});
//modal img
$(function () {
    $('.image_fullsize').on('click', function () {
        if($(this).attr('src')){
            var src=$(this).attr('src');
        }else{
            var src=$(this).find('img').attr('src')
        }
        $('.imagepreview').attr('src', src);
        var desc = $(this).attr('alt');
        if (!desc) {
            desc = $(this).attr('title');
        }
        $('#text_img_fullsize').html(desc);
        $('#imagemodal').modal('show');
    });
});