You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
(function () {
|
|
'use strict';
|
|
console.log('preload');
|
|
const electron = require('electron')
|
|
|
|
window.config = require('url').parse(window.location.toString(), true).query;
|
|
|
|
const ipc = electron.ipcRenderer
|
|
window.config.locale_json = ipc.sendSync('locale-data');
|
|
|
|
})();
|