Japanese manual: modified template string

modified based on the comments from Flatta
[ci skip]
This commit is contained in:
TAKAHASHI Kyohei 2016-05-22 00:22:51 +09:00
Родитель 77eb0e8e3f
Коммит 9d02292dec
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8C49E22DA193875B
2 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -13,7 +13,7 @@ let onlineStatusWindow;
app.on('ready', () => {
onlineStatusWindow = new BrowserWindow({ width: 0, height: 0, show: false });
onlineStatusWindow.loadURL('file://${__dirname}/online-status.html');
onlineStatusWindow.loadURL(`file://${__dirname}/online-status.html`);
});
```
@ -51,7 +51,7 @@ let onlineStatusWindow;
app.on('ready', () => {
onlineStatusWindow = new BrowserWindow({ width: 0, height: 0, show: false });
onlineStatusWindow.loadURL('file://${__dirname}/online-status.html');
onlineStatusWindow.loadURL(`file://${__dirname}/online-status.html`);
});
ipcMain.on('online-status-changed', (event, status) => {

Просмотреть файл

@ -99,8 +99,6 @@ app.on('activate', () => {
}
});
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
// このファイルでアプリケーション固有のメインプロセスのコードを読み込むことができる。
// ファイルを別に分けておいてここでrequireすることもできる。
```