adminlte modal code example
Example 1: how to remove fade issue in adminlte 2 modal
$(window).on('popstate', function() {
$(".modal-backdrop").remove();
});
Example 2: how to remove fade issue in adminlte 2 modal
$('modalId').modal('hide');
$(window).on('popstate', function() {
$(".modal-backdrop").remove();
});
$('modalId').modal('hide');