mirror of
https://github.com/pfalstad/circuitjs1.git
synced 2026-03-03 07:04:03 +01:00
- remove second menu - add real save, save as - allow multiple windows - fix print circuit title was always empty on right side of screen
21 lines
625 B
HTML
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>
|