![trop[bot]](/assets/img/avatar_default.png)
* docs: add `Menu` module tutorials * link API docs to new tutorials * removed unreferenced fiddles * add wording for new types * fix import sort errors * delete accelerator.md * fixes Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Erick Zhao <ezhao@slack-corp.com>
18 lines
609 B
HTML
18 lines
609 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
<title>Dock Menu Demo</title>
|
|
</head>
|
|
<body>
|
|
<h1>Dock Menu Demo</h1>
|
|
<ul>
|
|
<li>Create new BrowserWindow instances via the "New Window" option</li>
|
|
<li>Close all BrowserWindow instances via the "Close All Windows" option</li>
|
|
<li>Read the docs via the "Show Electron Docs" option</li>
|
|
</ul>
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html>
|