mattermost-desktop/test/modules/test.html

17 lines
240 B
HTML
Raw Normal View History

<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');
}
2016-08-20 13:34:09 -07:00
</script>
</body>
2016-08-20 13:34:09 -07:00
</html>