Skip to content
Snippets Groups Projects
Commit f3b7b71c authored by Saúl Ibarra Corretgé's avatar Saúl Ibarra Corretgé Committed by Hristo Terezov
Browse files

Style

parent c98037f9
No related branches found
No related tags found
No related merge requests found
/* global __dirname, process */
const electron = require('electron');
const APP = electron.app;
const BrowserWindow = electron.BrowserWindow;
const isDev = require('electron-is-dev');
const {
setupAlwaysOnTopMain,
initPopupsConfigurationMain,
getPopupTarget
} = require('jitsi-meet-electron-utils');
const path = require('path');
const URL = require('url');
const { app: APP, BrowserWindow } = electron;
/**
* Path to root directory
*/
const basePath = isDev ? __dirname : electron.app.getAppPath();
const basePath = isDev ? __dirname : APP.getAppPath();
/**
* URL for index.html which will be our entry point.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment