Fix popup blocking when opening a preview on browser in newIDE

This commit is contained in:
Florian Rival
2017-08-28 23:14:19 +02:00
parent 2a6b7f194f
commit 37732928cb

View File

@@ -20,8 +20,7 @@ const awsS3Client = new awsS3({
export default class BrowserS3PreviewLauncher {
static _openPreviewWindow = (project, url): void => {
const windowObjectReference = window.open(url, `_blank`,
"menubar=no,status=no");
const windowObjectReference = window.open(url, `_blank`);
console.log(windowObjectReference);
};