-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (30 loc) · 841 Bytes
/
popup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Popup</title>
</head>
<body>
<h1>Popup</h1>
<form id="form">
<input type="text" id="text" autofocus />
<input type="submit" value="Send" />
</form>
</body>
<script>
const electron = require("electron");
const { ipcRenderer } = electron;
const form = document.getElementById("form");
form.addEventListener("submit", (e) => {
e.preventDefault;
sendToMain();
});
const sendToMain = () => {
const input = document.getElementById("text");
const value = input.value;
ipcRenderer.send("data-from-popup", value);
};
</script>
</html>