Before this weekend we were using the following code in Microsoft Edge to open or reuse a tab from the parent to child tab so as to not be over loaded with tabs.
function launchProfile(profileLink){
profileLink += 'profile=' + tempProfile + '&profileNumber=' + tempProfileNumber;
window.open(profileLink,'profileTab');
}
As a user looks at different profiles they click a button to view an outside website, passing profile parameters to load the page. Before this weekend this was functioning as expected with only one child tab being created and used. As of today each time the button is clicked a new tab is created. Is there either a setting in Edge or Windows that would control that behavior?