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 Sep 28, 2022
1 parent e433e82 commit b171cdc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@
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;
//Fixed #117 - Disappearing Main Menu for Users With Multiple Inboxes
// Suitecrm 8 Modify the iframe link not the main query
location = 'index.php?module=Emails&action=index&folders_id=' + mbox;
}
});

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

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

0 comments on commit b171cdc

Please sign in to comment.