-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 744 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
<script src="index.js"></script>
</head>
<body>
<h1>Hello World!</h1>
We are using io.js <script>document.write(process.version)</script>
and Electron <script>document.write(process.versions['electron'])</script>.
<webview id="wallet-dapp" src="http://localhost:3000" autosize="on"></webview>
<p>Custom window management buttons</p>
<button onclick="exit()">close</button>
<button onclick="minimize()">minimize</button>
<button onclick="maximize()">maximize</button>
<button onclick="unmaximize()">unmaximize</button>
<button onclick="enterFullscreen()">enterFullscreen</button>
<button onclick="leaveFullscreen()">leaveFullscreen</button>
</body>
</html>