mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 13:03:22 +00:00
27 lines
730 B
HTML
27 lines
730 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="about.css">
|
|
</head>
|
|
<body>
|
|
<div class="about">
|
|
<center><img src="../resources/Icon.png"></center>
|
|
<center><p class="detail"> Version : 0.0.1 </p>
|
|
<center><p class="detail"> License : Apache </p>
|
|
<center><p class="detail"> Maintainer : Zulip </p>
|
|
<p class="left"><a class="bug" onclick="linkInBrowser()" href="#">Found bug?</a></p>
|
|
</div>
|
|
<script>
|
|
|
|
function linkInBrowser(event) {
|
|
|
|
const shell = require('electron').shell;
|
|
|
|
const url = "https://github.com/zulip/zulip-electron/issues/new?body=Please describe your issue and steps to reproduce it."
|
|
|
|
shell.openExternal(url);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |