Q:

how to remove fade issue in adminlte 2 modal

$(window).on('popstate', function() {
    $(".modal-backdrop").remove();
});
0
//setting callback function for 'hidden.bs.modal' event
$('#modal').on('hidden.bs.modal', function(){
  //remove the backdrop
  $('.modal-backdrop').remove();
})
0
$('modalId').modal('hide');
0
$('body').removeClass('modal-open');
$('.modal-backdrop').remove();
0

New to Communities?

Join the community