I am facing a Issue in appAPI.openURL parameter popup.
I expected popup parameter will open my URL as popup window. but it is popping under the main window. which is not my requirement.
I need to open my window as popup (modal popup) but not as pop under.
this is how i am doing it
appAPI.openURL({
url: href,
where: "popup",
focus: false
});
Any help would be appreciated.