mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 21:13:32 +00:00
This was not a security feature; security is enforced using context isolation and the same-origin policy. Furthermore, navigation on drag-and-drop was already disabled by default in Electron 3.0. https://www.electronjs.org/blog/electron-3-0#breaking-api-changes Signed-off-by: Anders Kaseorg <anders@zulip.com>
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="css/about.css">
|
|
<title>Zulip - About</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="about">
|
|
<img class="logo" src="../resources/zulip.png" />
|
|
<p class="detail" id="version">v?.?.?</p>
|
|
<div class="maintenance-info">
|
|
<p class="detail maintainer">
|
|
Maintained by
|
|
<a href="https://zulip.com" target="_blank" rel="noopener noreferrer">Zulip</a>
|
|
</p>
|
|
<p class="detail license">
|
|
Available under the
|
|
<a href="https://github.com/zulip/zulip-desktop/blob/master/LICENSE" target="_blank" rel="noopener noreferrer">Apache 2.0 License</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
|
|
const { app } = require('electron').remote;
|
|
const version_tag = document.querySelector('#version');
|
|
version_tag.textContent = 'v' + app.getVersion();
|
|
</script>
|
|
</body>
|
|
</html>
|