mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 13:03:22 +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>
21 lines
763 B
HTML
21 lines
763 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="responsive desktop">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Zulip - Settings</title>
|
|
<link rel="stylesheet" href="css/preference.css" type="text/css" media="screen">
|
|
<link id="tagify-css" rel="stylesheet" href="data:text/css,">
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
<div id="sidebar"></div>
|
|
<div id="settings-container"></div>
|
|
</div>
|
|
</body>
|
|
<script>
|
|
document.querySelector('#tagify-css').href = require.resolve('@yaireo/tagify/dist/tagify.css');
|
|
require('./js/pages/preference/preference.js');
|
|
</script>
|
|
</html>
|