18 lines
458 B
HTML
18 lines
458 B
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title>Atom Shell</title>
|
|
</head>
|
|
<body>
|
|
This is the default mode of Atom Shell, please follow the instructions in
|
|
wiki to get started.
|
|
<script type="text/javascript" charset="utf-8">
|
|
var ipc = require('ipc');
|
|
|
|
window.addEventListener('contextmenu', function (e) {
|
|
e.preventDefault();
|
|
ipc.send('menu');
|
|
}, false);
|
|
</script>
|
|
</body>
|
|
</html>
|