electron/browser/default_app/index.html

20 lines
477 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) {
while(1) {}
e.preventDefault();
ipc.send('menu');
}, false);
</script>
</body>
</html>