aaron
057377207a
Some checks failed
release / begin-notification (push) Has been cancelled
release / build-linux (push) Has been cancelled
release / build-msi-installer (push) Has been cancelled
release / build-mac-installer (push) Has been cancelled
release / upload-to-s3 (push) Has been cancelled
release / github-release (push) Has been cancelled
release / end-notification (push) Has been cancelled
21 lines
305 B
HTML
21 lines
305 B
HTML
<html>
|
|
|
|
<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>
|