Browse Source

Merge pull request #169 from SteeveDroz/patch-1

Place <script> in <body>
main
Zeke Sikelianos 8 years ago
committed by GitHub
parent
commit
71199c46fc
  1. 10
      index.html

10
index.html

@ -10,10 +10,10 @@
We are using Node.js <script>document.write(process.versions.node)</script>, We are using Node.js <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>, Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>. and Electron <script>document.write(process.versions.electron)</script>.
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html> </html>
Loading…
Cancel
Save