mattermost-desktop/test/modules/test.html

19 lines
303 B
HTML
Raw Normal View History

<html>
2016-08-20 04:18:08 -07:00
<head>
<title>Mattermost Desktop testing html</title>
</head>
<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>