mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-25 02:10:32 -06:00
dc7079e0d7
- 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
28 lines
747 B
HTML
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> |