File tree Expand file tree Collapse file tree 5 files changed +6316
-0
lines changed
Expand file tree Collapse file tree 5 files changed +6316
-0
lines changed Original file line number Diff line number Diff line change 1+ # builds
2+ /dist
3+
4+ # dependencies
5+ /node_modules
6+
7+ # IDEs and editors
8+ /.idea
9+ .project
10+ .classpath
11+ .c9 /
12+ * .launch
13+ .settings /
14+ * .sublime-workspace
15+
16+ # IDE - VSCode
17+ .vscode /*
18+ ! .vscode /settings.json
19+ ! .vscode /tasks.json
20+ ! .vscode /launch.json
21+ ! .vscode /extensions.json
22+ .history /*
23+
24+ # misc
25+ /.sass-cache
26+ /connect.lock
27+ /coverage
28+ /libpeerconnection.log
29+ npm-debug.log
30+ yarn-error.log
31+ testem.log
32+ /typings
33+
34+ # System Files
35+ .DS_Store
36+ humbs.db
Original file line number Diff line number Diff line change 1+ const { app, BrowserWindow } = require ( 'electron' )
2+
3+ function createWindow ( ) {
4+ const win = new BrowserWindow ( {
5+ width : 1440 ,
6+ height : 900 ,
7+ } )
8+
9+ win . loadURL ( "https://bitclout.com" ) ;
10+ }
11+
12+ app . whenReady ( ) . then ( ( ) => {
13+ createWindow ( )
14+
15+ app . on ( 'activate' , ( ) => {
16+ if ( BrowserWindow . getAllWindows ( ) . length === 0 ) {
17+ createWindow ( )
18+ }
19+ } )
20+ } )
21+
22+ app . on ( 'window-all-closed' , ( ) => {
23+ if ( process . platform !== 'darwin' ) {
24+ app . quit ( )
25+ }
26+ } )
You can’t perform that action at this time.
0 commit comments