electron-demo.js/index.html

43 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2017-04-20 12:01:35 -06:00
<!DOCTYPE html>
<html>
<head>
2017-04-24 11:19:39 -06:00
<link href="./style.css" type="text/css" rel="stylesheet" media="screen">
2017-04-20 12:01:35 -06:00
<meta charset="UTF-8">
</head>
<body>
2017-04-24 11:19:39 -06:00
<div class="notify">
<h3>Notifications</h3>
2017-04-24 15:11:42 -06:00
<button class="queue">Queue</button>
<button class="clear">Clear Queue</button>
</div>
2017-04-24 15:11:42 -06:00
<script>require("./notifications")</script>
<div class="drag-n-drop">
<h3>Drag and Drop Area</h3>
<div class="file-container"></div>
2017-04-21 13:24:57 -06:00
</div>
2017-04-24 15:11:42 -06:00
<script>require("./drag-drop-render")</script>
2017-04-24 17:21:00 -06:00
<div>
<h3>Auto-Start</h3>
<label>
<input type="checkbox" class="auto-start"/>
Start Electron Demo on startup
</label>
</div>
<script>require("./startup-render")</script>
2017-05-22 15:10:24 -06:00
<div>
<h3>Device Discovery</h3>
<button class="query-devices">Query Devices</button>
<div class="found-devices"></div>
</div>
<script>require("./mdns-render")</script>
<div>
<button class="crasher">Crash Program</button>
</div>
2017-04-24 15:11:42 -06:00
<script>require("./crash-reporter")</script>
2017-04-20 12:01:35 -06:00
</body>
</html>