Files
circuitjs1/app/index.html
pf 5147b983c0 improve offline version
- remove second menu
- add real save, save as
- allow multiple windows
- fix print
circuit title was always empty on right side of screen
2020-10-06 16:09:16 -07:00

21 lines
625 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CircuitJS1</title>
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
<script>
// You can also require other files to run in this process
const electron = require('electron')
require('./renderer.js')
</script>
</body>
</html>