-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 993 Bytes
/
index.html
File metadata and controls
41 lines (36 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ipcMain & ipcRenderer example</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>ipcMain & ipcRenderer example</h1>
<div class="box">
<div class="box-button">
<button id="ping-good">Ping <span>GOOD</span></button>
<span class="space"></span>
<p id="ping-good-response">Click on button</p>
</div>
<div class="box-button">
<button id="ping-bad">Ping <span>BAD</span></button>
<span class="space"></span>
<p id="ping-bad-response">Click on button</p>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
<span class="space"></span>
<span class="space"></span>
<span class="space"></span>
<p class="see-code">
See the code in
<br>
http://bit.ly/electron-ipc-example
</p>
<script>
require('./renderer.js')
</script>
</body>
</html>