I am trying to open a child window and publish events from parent window to child window in outlook web addin. It is working fine in browsers and mac outlook. But in windows outlook, it is opening in browsers directly and not having any communication with parent window and not listening to events. How can i fix this?
opening child window like this :
window.open(url, 'title', "width=600, height=400, center=true, useContentSize=true");
What your looking for is the Dialog API. This API includes everything you need to handle pop-up dialogs and communication between the add-in and external browser window across Windows, Web, iPad, and Mac.