@jitsi/electron-sdk
Version:
Utilities for jitsi-meet-electron project
21 lines (19 loc) • 445 B
JavaScript
const { SIZE } = require("../constants");
module.exports = {
backgroundColor: 'transparent',
minWidth: SIZE.width,
minHeight: SIZE.height,
minimizable: false,
maximizable: false,
resizable: true,
alwaysOnTop: true,
fullscreen: false,
fullscreenable: false,
skipTaskbar: true,
titleBarStyle: undefined,
frame: false,
show: false,
webPreferences: {
contextIsolation: false
}
};