mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
df52521c17
* Handle opening of external links in electron. Minor refactor of window code. * Convert updates from in-app modal to electron dialogs. Remove in-app code and preload bridge. * Refine new window blocking. Re-enable tsconfig to look at electron-app. * Clean up shared * Whoops, wrong protocol format
23 lines
545 B
TypeScript
23 lines
545 B
TypeScript
import { app } from 'electron';
|
|
import getWindow from './window';
|
|
|
|
// Quit application when all windows are closed
|
|
app.on('window-all-closed', () => {
|
|
// On macOS it is common for applications to stay open
|
|
// until the user explicitly quits
|
|
if (process.platform !== 'darwin') {
|
|
app.quit();
|
|
}
|
|
});
|
|
|
|
app.on('activate', () => {
|
|
// On macOS it is common to re-create a window
|
|
// even after all windows have been closed
|
|
getWindow();
|
|
});
|
|
|
|
// Create main BrowserWindow when electron is ready
|
|
app.on('ready', () => {
|
|
getWindow();
|
|
});
|