зеркало из https://github.com/electron/electron.git
Japanese manual: modified template string
modified based on the comments from Flatta [ci skip]
This commit is contained in:
Родитель
77eb0e8e3f
Коммит
9d02292dec
|
@ -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することもできる。
|
||||
```
|
||||
|
|
Загрузка…
Ссылка в новой задаче