New electron client (#256)

This commit is contained in:
Thomas Denney
2016-09-21 06:02:18 +01:00
committed by Peli de Halleux
parent 5d40a48477
commit 527d323ea7
5 changed files with 55 additions and 66 deletions

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>code the micro:bit</title>
</head>
<body>
<webview id="webview" style="position:absolute; left:0; top:0; right:0; bottom:0"/>
<script>
const webview = document.getElementById("webview")
const url = `http://localhost:3232/${window.location.hash}`
webview.src = url
</script>
</body>
</html>