How to open a URL in a window in "Maximized" mode using Crossrider appAPI.openURL ?
Based on the Crossrider APIs located here, appAPI.openURL , you can open a URL in a new tab or in a window (with width and height) as below:
appAPI.openURL({
url: "http://www.mysite.com",
where: "window",
height: 300,
width: 500
});
How can you open the window in "Maximized" mode without using the width and height (but not in a new tab but in a new window)? I tried taking out the width and height options, but the window does not open in "Maximized" mode. Any help would be appreciated?