You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
488 B
20 lines
488 B
const { LOGIN_WINDOW_URL } = require("../constant")
|
|
const { createWindow } = require('./lib/common')
|
|
|
|
const create = () => {
|
|
const win = createWindow(LOGIN_WINDOW_URL, {
|
|
width: 500,
|
|
height: 400,
|
|
alwaysOnTop: true,
|
|
// modal: true,
|
|
// parent: event.sender,
|
|
minimizable: false,
|
|
fullscreenable: false,
|
|
maximizable: false,
|
|
resizable: false,
|
|
focusable: true
|
|
})
|
|
return win
|
|
}
|
|
|
|
module.exports = { create }
|