mattermost-desktop/test/modules/test.html
2016-08-20 22:38:34 +02:00

17 lines
240 B
HTML

<html>
<body>
<h1>window.open() test</h1>
<p>
<input type="button" value="window.open()" onclick="open_window()">
</p>
<script>
function open_window() {
window.open('./test.html');
}
</script>
</body>
</html>