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
48 lines
1.2 KiB
HTML
48 lines
1.2 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Test pop-out window</title>
|
|
</head>
|
|
Test Window has been opened
|
|
<p>
|
|
<label for='tag'>tag:</label>
|
|
<input type='text' id='tag' value=''/>
|
|
</p>
|
|
|
|
<button id="open-win">Open a new child window</button>
|
|
<br>
|
|
<br>
|
|
|
|
<button id="open-in-browser">Open Symphony in browser</button>
|
|
<br>
|
|
<br>
|
|
|
|
<a href="https://symphony.com" target="_blank">Open Symphony</a>
|
|
|
|
<hr>
|
|
<p>Badge Count:<p>
|
|
<button id='inc-badge'>increment badge count</button>
|
|
<br>
|
|
|
|
<script>
|
|
var badgeCount = 0;
|
|
|
|
var incBadgeEl = document.getElementById('inc-badge');
|
|
incBadgeEl.addEventListener('click', function() {
|
|
badgeCount++;
|
|
ssf.setBadgeCount(badgeCount);
|
|
});
|
|
|
|
var openWinButton = document.getElementById('open-win');
|
|
openWinButton.addEventListener('click', function() {
|
|
win = window.open('childWin.html?x=200&y=200', 'childWin', 'height=500,width=500');
|
|
});
|
|
|
|
var openInBrowser = document.getElementById('open-in-browser');
|
|
openInBrowser.addEventListener('click', function () {
|
|
window.open('https://symphony.com');
|
|
});
|
|
|
|
</script>
|
|
</html>
|