SymphonyElectron/demo/childWin.html
Kiran Niranjan dc7079e0d7 Electron-325 (Removed restriction from opening a popup from another popup window) (#318)
- Updated the event `new-window` by removing the restriction to open new windows in pop-outs
- Added Spectron test cases for pop-outs
- Fix PR concerns
2018-03-15 17:18:06 +05:30

28 lines
747 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Child pop-out window</title>
</head>
<body>
<h3>This is a child window created by a child window</h3>
<button id="open-win">Open a new child window</button>
<br>
<br>
<button id="open-in-browser">Open Symphony in browser</button>
<br>
<script>
var openWinButton = document.getElementById('open-win');
openWinButton.addEventListener('click', function() {
win = window.open('childWin.html?x=100&y=100', 'childWin', 'height=800,width=400');
});
var openInBrowser = document.getElementById('open-in-browser');
openInBrowser.addEventListener('click', function () {
window.open('https://symphony.com');
});
</script>
</body>
</html>