1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

formatting

This commit is contained in:
Kyle Spearrin
2019-06-03 08:33:37 -04:00
parent 697e7ef632
commit 3d93696fb5

View File

@@ -5,6 +5,7 @@ import * as path from 'path';
import * as url from 'url';
import { isDev, isMacAppStore, isSnapStore } from './utils';
import { StorageService } from '../abstractions/storage.service';
const WindowEventHandlingDelay = 100;
@@ -15,10 +16,10 @@ const Keys = {
export class WindowMain {
win: BrowserWindow;
isQuitting: boolean = false;
enableAlwaysOnTop: boolean = false;
private windowStateChangeTimer: NodeJS.Timer;
private windowStates: { [key: string]: any; } = {};
private enableAlwaysOnTop: boolean = false;
constructor(private storageService: StorageService, private hideTitleBar = false,
private defaultWidth = 950, private defaultHeight = 600) { }