Skip to content

Commit

Permalink
Fix salesagility#117 - Disappearing Main Menu for Users With Multiple…
Browse files Browse the repository at this point in the history
… Inboxes

- On folder select modify the iframe location instead of top location
  • Loading branch information
abuzarfaris committed Oct 19, 2022
1 parent e433e82 commit e42bf14
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
var mbox = data.selected[0];
// reload with different inbox
$('[name=folders_id]').val(mbox);
top.location = 'index.php?module=Emails&action=index&folders_id=' + mbox;
window.location = 'index.php?module=Emails&action=index&folders_id=' + mbox;
}
});

Expand Down Expand Up @@ -125,4 +125,4 @@

$(document).ready(function() {
$(document).FoldersViewModal();
});
});

0 comments on commit e42bf14

Please sign in to comment.