Add link to terms and privacy policy in about window
This commit is contained in:
15
about_preload.js
Normal file
15
about_preload.js
Normal file
@@ -0,0 +1,15 @@
|
||||
const { ipcRenderer } = require('electron');
|
||||
const url = require('url');
|
||||
const i18n = require('./js/modules/i18n');
|
||||
|
||||
const config = url.parse(window.location.toString(), true).query;
|
||||
const { locale } = config;
|
||||
const localeMessages = ipcRenderer.sendSync('locale-data');
|
||||
|
||||
window.getEnvironment = () => config.environment;
|
||||
window.getVersion = () => config.version;
|
||||
window.getAppInstance = () => config.appInstance;
|
||||
|
||||
window.closeAbout = () => ipc.send('close-about');
|
||||
|
||||
window.i18n = i18n.setup(locale, localeMessages);
|
Reference in New Issue
Block a user