electron/atom/browser/default_app/index.html

19 lines
458 B
HTML
Raw Normal View History

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
2013-05-30 07:40:44 +00:00
<title>Atom Shell</title>
</head>
<body>
2013-05-30 07:40:44 +00:00
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>