mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
15 lines
274 B
JavaScript
15 lines
274 B
JavaScript
|
|
const { app, BrowserWindow } = require('electron');
|
||
|
|
const electronDragClick = require('../index');
|
||
|
|
|
||
|
|
electronDragClick();
|
||
|
|
|
||
|
|
app.on('ready', () => {
|
||
|
|
const win = new BrowserWindow({
|
||
|
|
width: 800,
|
||
|
|
height: 600,
|
||
|
|
frame: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
win.loadFile('./index.html');
|
||
|
|
});
|