Browse Source

fix(title): set html title to Zap

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
d0f0e575eb
  1. 2
      app/app.html
  2. 1
      app/main.dev.js

2
app/app.html

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>Hello Electron React!</title>
<title>Zap</title>
<link rel="stylesheet" href="https://s3.amazonaws.com/fonts.typotheque.com/WF-018717-007225.css" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Raleway:700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>

1
app/main.dev.js

@ -78,6 +78,7 @@ app.on('ready', async () => {
if (!mainWindow) {
throw new Error('"mainWindow" is not defined');
}
mainWindow.show();
mainWindow.focus();
});

Loading…
Cancel
Save